My issue
Answer
My code
# Update the '_' in the code below
#accept the count of testcases given in the the 1st line
t = int(input())
#run a loop to accept 't' testcases
for i in range(t):
#accept 2 integers on the 1st line of each test case
A, B = map(int,input().split())
#accept 1 string on the 2nd line of each test case
C = int(input())
#output the 2 integers and 1 string on a single line for each test case
print(A, B, C)
Learning course: Design and Analysis of Algorithms
Problem Link: https://www.codechef.com/learn/course/kl-daa/KLDAA24PRE01/problems/PREQ09