T = int(input()) for _ in range(T): x,y = map(int,input().split()) if x == y: print('Yes') elif x == 1: print("No") elif x == 2 and y != 1: print('No') else: print('Yes')