josiftepe

Untitled

Jan 20th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 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.    
  11.     if(x + y < 30 and x * y < 30) {
  12.         cout << "DA" << endl;
  13.     }
  14.     else {
  15.         cout << "NE" << endl;
  16.     }
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment