Advertisement
Josif_tepe

Untitled

Jul 3rd, 2025
159
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.    
  5.     int a;
  6.     scanf("%d", &a);
  7.    
  8.     if(a % 2 == 0) {
  9.         printf("PAREN\n");
  10.     }
  11.    
  12.     if(a % 2 == 1) {
  13.         printf("NEPAREN\n");
  14.     }
  15.     return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement