N,S = map(int,input().split()) if N*25 <= S < N*30: print('Yes') else: print('No')