nmnm2025
# 1230
'''
# a,b,c=map(int, input().split())
# if a > 170:
# if b > 170:
# if c > 170:
# print('PASS')
# else:
# print('CRASH',c)
# else:
# print('CRASH',b)
# else:
# print('CRASH',a)
'''
# a,b,c=map(int, input().split())
# if a < 170:
# print("CRASH",a)
# elif b < 170:
# print("CRASH",b)
# elif c < 170: 실행했을때 같지만 위에게 맞는거
# print("CRASH",c)
# else:
# print("PASS")
# 지금까지 1230
# a,b,c,d=map(int, input().split())
# if a/b > c/d:
# print('>')
# elif a/b == c/d:
# print('=')
# else:
# print('<')
# a,b=map(int, input().split())
# if b % a == 0:
# print(a,"*",b // a,"=",b,sep='')
# elif a % b == 0:
# print(b,"*",a // b,"=",a,sep='')
# else:
# print("none")
# a,b,c=map(int, input().split())
# d = b - c
# if d > a:
# print("advertise")
# elif d < a:
# print("do not advertise")
# else:
# print("does not matter")




