A問題 HEX
1 2 3 4 5 6 7 |
x,y = input().split() if x>y: print('>') elif x<y: print('<') else: print('=') |
1 2 3 4 5 6 7 |
x,y = input().split() if x>y: print('>') elif x<y: print('<') else: print('=') |
コメント