A, B = map(int, input().split()) B = abs(B) if B == 0: print('No') elif A < B: print('Yes') else: print('No')