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