My issue
test cases are not passing
My code
t=int(input())
for i in range(t):
a,b=map(int,input().split())
while a<b:
if a%2!=0:
a+=1
if a==b:
break
elif a%2==0:
a+=2
print(a)
if a==b:
break
if a==b:
print("yes")
else:
print("no")
Problem Link: Alternate Additions Practice Coding Problem - CodeChef