Advertisement
Josif_tepe

Untitled

May 4th, 2025
179
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.  
  5. int main() {
  6.    
  7.     int a, b, c;
  8.     cin >> a >> b >> c;
  9.    
  10.     int zbir = b + c;
  11.    
  12.     if(a > zbir) {
  13.         cout << "POGOLEM" << endl;
  14.     }
  15.    
  16.        
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement