n,s = map(int,input().split()) if s/25 <= n and n <= s/29: print('Yes') else: print('No')