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