Advertisement
Josif_tepe

Untitled

Oct 27th, 2023
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.    
  7.     int a, b;
  8.     cin >> a;
  9.     cin >> b;
  10.    
  11.     if(a > b) {
  12.         cout << "Pogolem" << endl;
  13.     }
  14.    
  15.     if(a < b) {
  16.         cout << "Pomal" << endl;
  17.     }
  18.     return 0;
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement