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