A問題 Three-letter acronym
1 2 3 |
a,b,c = input().split() ans = (a[0]+b[0]+c[0]).upper() print(ans) |
B問題 Comparison
1 2 3 4 5 6 7 8 |
a = int(input()) b = int(input()) if a>b: print('GREATER') elif a<b: print('LESS') else: print('EQUAL') |
コメント