You Should Believe Him Now

My friend, Qbaidul claimed again that he can do math. He knows that no one going to believe him this…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

N=int(input())
for i in range(N):
H,M=map(int,input().split())
U=(H+M)/2
print(round(U,1))
#Could anyone tell me what is wrong with the code here