Codeforce3 codeforce 112A. Petya and Strings 1 2 3 4 5 str_1=input().lower() str_2=input().lower() if str_1 > str_2 : print(1) elif str_1 == str_2 : print(0) else : print(-1) cs 2022. 4. 28. codeforce 71A. Way Too Long Words 1 2 3 4 5 6 n=int(input()) for i in range(n): s=input() if len(s) 2022. 4. 28. Codeforces A. Watermelon 1 2 3 4 5 6 s=int(input()) ans='' if (s%2)==0 : ans="YES" else : ans="NO" if s == 2 : ans="NO" print (ans) cs 2022. 4. 28. 이전 1 다음