My issue
t = int(input())
for i in range(t):
a, b, c = map(int, input().split())
print(max(a, b, c))
My code
# cook your dish here
t = int(input())
for i in range(t):
a, b, c = map(int, input().split())
print(max(a, b, c))
Problem Link: Maximum of Three Numbers Practice Coding Problem - CodeChef