My issue
run time error
My code
# Update the '_' in the code below
t = int(input())
for i in range(t):
#Accept 2 integers inputs
A, B = map(5,10)
#Sum of inputs
S = A+B
#Product of inputs
P = A*B
#Print the desired output for each test case
print(t,S,P)
Learning course: Logic Building in Python
Problem Link: CodeChef: Practical coding for everyone