josiftepe

Untitled

Jan 20th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cin >> x;
  9.     cin >> y;
  10.     if (x <= y) {
  11.         cout << "Prviot broj e pomal ili ednakov na vtoriot broj" << endl;
  12.     }
  13.     if (x > y) {
  14.         cout << "Prviot broj e pogolem od vtoriot" << endl;
  15.     }
  16.     if (x == y) {
  17.         cout << "Prviot broj e ednakov na vtoriot broj" << endl;
  18.     }
  19.     if (x != y) {
  20.         cout << "Broevite se razlicni" << endl;
  21.     }
  22.    
  23.     return 0;
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment