N, S = map(int, input().split()) ave = S / N if S >= 25 and ave < 30: print("Yes") else: print("No")