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