Untitled
user_5668965
python
9 months ago
131 B
10
Indexable
t = int(input()) for i in range(t): x, y = map(int, input().split()) if(x - y > 1): print('YES') else: print('NO')
Editor is loading...
Leave a Comment
t = int(input()) for i in range(t): x, y = map(int, input().split()) if(x - y > 1): print('YES') else: print('NO')