Advertisement
Josif_tepe

Untitled

May 18th, 2024
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     int a, b;
  5.     cin >> a >> b;
  6.    
  7.     if(a < b) {
  8.         cout << a << " e pomalo od " << b << endl;
  9.     }
  10.     else {
  11.         cout << b << " e pomalo ili ednakvo od " << a << endl;
  12.     }
  13.  
  14.  
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement