n, s = map(int, input().split()) if s >= 25 and n * 29 >= s: print('Yes') else: print('No')