4999

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

int main(void){
    char d_sound[1000];
    char j_sound[1000];

    // 입력
    scanf("%s", &d_sound);
    scanf("%s", &j_sound);

    // 길이로 비교 (의사s가 재환s보다 작을 경우 안가도 ㄱㅊ)
    if(strlen(d_sound) < strlen(j_sound)){
        printf("no");
    }
    // (의사s가 재환s보다 같거나 클 경우 ㄱㄱ)
    else{
        printf("go");
    }
    return 0;
}

+ Recent posts