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