n,s = map(int,input().split()) if 29 * n < s: print("No") elif n == 1 and s < 25: print("No") else: print("Yes")