Help me in solving CS02A problem

My issue

My code

# Update the program below to solve the problem

t = int(input())           
for i in range(t):
    X, Y, A = map(int, input().split())
    if X >= Y:
        print(A)
    else:
        print(A)

Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone