Advertisement
Josif_tepe

Untitled

Nov 15th, 2022
853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.77 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     int A, B;
  6.     scanf("%d%d", &A, &B);
  7.    
  8.     if(A <= 0 || B <= 0) {
  9.         printf("Invalid output\n");
  10.         return 0;
  11.     }
  12.    
  13.     if(A < B) {
  14.         int temp = A;
  15.         A = B;
  16.         B = temp;
  17.     }
  18.     int pozicija = 1;
  19.     int paren_ekvivalent = 1;
  20.    
  21.     while(A > 0) {
  22.         int cifra = A % 10;
  23.         if(pozicija % 2 == 0) {
  24.             int cifra_od_B = B % 10;
  25.             if(cifra_od_B != cifra) {
  26.                 paren_ekvivalent = 0;
  27.                 break;
  28.             }
  29.             B /= 10;
  30.         }
  31.         A /= 10;
  32.         pozicija++;
  33.     }
  34.     if(paren_ekvivalent == 0) {
  35.         printf("NE");
  36.     }
  37.     else {
  38.         printf("PAREN");
  39.     }
  40.     return 0;
  41.  
  42. }
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement