价格 = 3 while True: guess = int(input()) if guess > 价格: print('高了') elif guess < 价格: print('低了') else: print('bingo') break