def main(): n, s = map(int, input().split()) if s>=25 and s<=29*n: print("Yes") else: print("No") pass if __name__ == "__main__": main()