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