n,s = map(int,input().split()) if s // n >= 30: print("No") elif s - 25 >= n-1: print("Yes") else: print("No")