H,M=map(int, input().split()) A=H*60+M if A<7*60+30: print('Yes') elif A<8*60+30: print('Late') else: print('No')