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