from math import log2 a,b=map(int,input().split()) t=2*log2(a) t1=log2(b**2) if t < t1: print('Yes') else: print('No')