Advertisement
Josif_tepe

Untitled

Mar 6th, 2024
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int a, b;
  5.     scanf("%d", &a);
  6.     scanf("%d", &b);
  7.  
  8.     if(a > b || a % 2 == 0) {
  9.         printf("DA\n");
  10.     }
  11.     else {
  12.         printf("NE\n");
  13.     }
  14.     return 0;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement