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()),int(input()))
#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: Solve Programming problems using Python
Problem Link: CodeChef: Practical coding for everyone