Untitled

 avatar
user_5668965
python
15 days ago
131 B
1
Indexable
Never
t = int(input())

for i in range(t):
	x, y = map(int, input().split())
	if(x - y > 1):
		print('YES')
	else:
		print('NO')
Leave a Comment