My issue
My code
# Update the '_' in the code below
t = int(input())
for i in range(t):
#Accept 2 integers inputs
A, B = map(int(input().split,int(input().split))
#Sum of inputs
S = A+B
#Product of inputs
P = A * B
#Print the desired output for each test case
print(S,P)
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone