Advertisement
Josif_tepe

Untitled

Feb 4th, 2022
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string zbor1, zbor2;
  6.    
  7.     cin >> zbor1 >> zbor2;
  8.    
  9.     if(zbor1 == zbor2) {
  10.         cout << "ISTI" << endl;
  11.     }
  12.     else {
  13.         cout << "RAZLICNI" << endl;
  14.     }
  15.    
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement