题解 | #判断两个数的大小关系#
判断两个数的大小关系
https://www.nowcoder.com/practice/f05358b9e8164b27871c87d3097f4dab
import sys try: while True: a, b = map(int, input().split()) if a == b: print('%d=%d' % (a, b)) elif a > b: print('%d>%d' % (a, b)) else: print('%d<%d' % (a, b)) except: pass