Josif_tepe

Untitled

Aug 22nd, 2025
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <ctype.h>
  4. #include <string.h>
  5.  
  6. int main(void) {
  7.    
  8.     char a[2000];
  9.    
  10.     scanf("%s", a);
  11.    
  12.     char b[2000];
  13.     scanf("%s", b);
  14.    
  15.     if(strcmp(a, b) == 0) {
  16.         printf("ISTI\n");
  17.     }
  18.     else {
  19.         printf("NE SE ISTI\n");
  20.     }
  21.    
  22.    
  23.  
  24.     return 0;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment