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