Advertisement
Josif_tepe

Untitled

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