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