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