Advertisement
rotti321

Parchet / Aria

May 17th, 2021
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int a, b, x;
  7.     cin >> a >> b >> x;
  8.     if (a*b<=x){
  9.         cout<< "DA";
  10.     }
  11.     else {
  12.         cout << "NU";
  13.     }
  14.    
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement