My issue
test cases are not passing
My code
# cook your dish here
a=int(input())
for i in range(a):
b,c,d=map(int,input().split())
if (b+c+d)>=100:
if (b>10 and c>10):
if d>10:
print("pass")
else:
print("fail")
else:
print("fail")
else:
print("fail")
Problem Link: PASSTHEEXAM Problem - CodeChef