Advertisement
Josif_tepe

Untitled

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