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