#include <stdio.h>
#include <string.h>

int main(void) {
    char str_one[] = "#7dj@#8";
    char str_two[] = "#7dj@#8";
    int cmp;
    
    cmp = strcmp(str_one, str_two);
    
    if(cmp == 0) {
        printf("일치\n");
    } else {
        printf("불일치\n");
    }
    
    return 0;
}