import strutils, sequtils proc solve() = var x, y: int (x, y) = stdin.readLine.split.map parseInt if x <= 4 and y <= x or x >= 5: echo "Yes" else: echo "No" let t = stdin.readLine.parseInt for _ in 0..