My issue
My code
t = int(input())
for i in range(t):
N = map(int, input().split())
print(t + N)
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone
t = int(input())
for i in range(t):
N = map(int, input().split())
print(t + N)
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone