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;
}

'백준' 카테고리의 다른 글
| [ 백준 / C ] 6763번 : Speed fines are not fine! (0) | 2025.08.25 |
|---|---|
| [ 백준 / C ] 15962번 : 새로운 시작 (0) | 2025.08.22 |
| [ 백준 / C ] 2750번 : 수 정렬하기 (0) | 2025.08.20 |
| [ 백준 / C ] 29699번 : Welcome to SMUPC! (0) | 2025.08.19 |
| [ 백준 / C ] 26082번 : WARBOY (0) | 2025.08.19 |