判断大小_python3
判断两个数的大小关系
http://www.nowcoder.com/questionTerminal/f05358b9e8164b27871c87d3097f4dab
while True:
try:
a, b = map(int, input().split())
ch = '>' if a > b else '<' if a < b else '='
print('{}{}{}'.format(a, ch, b))
except EOFError:
break
