josiftepe

Untitled

Jan 20th, 2021
78
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. {
  6.     int x;
  7.     int y;
  8.     cin >> x;
  9.     cin >> y;
  10.     if (x < y) {
  11.         cout << x + y << endl;
  12.     }
  13.     if (x > y) {
  14.         cout << x * y << endl;
  15.     }
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment