python读入多组数据

while True:
    try:
        x,a,y,b=map(int,input().split())
        if x*b > y*a:
            print(">")
        elif x*b < y*a:
            print("<")
        else :
            print("=")
    except:
        break

 

posted @ 2020-10-24 15:29  WeiAR  阅读(1062)  评论(0编辑  收藏  举报