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