My issue
My code
# cook your dish here
for _ in range(int(input())):
A, B, C = map(int, input().split())
for i in range(1, 100):
if A%i != 0 and B%i != 0 and C%i != 0:
print(i)
break
Problem Link: INDIVISIBLE Problem - CodeChef