Advertisement
Josif_tepe

Untitled

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