My issue
My code
a=int(input())
for i in range(a):
b,c,d=map(int,input().split())
if(b & c & d >10):
print('PASS')
elif(b+c+d>100):
print('FAIL')
Problem Link: PASSTHEEXAM Problem - CodeChef
a=int(input())
for i in range(a):
b,c,d=map(int,input().split())
if(b & c & d >10):
print('PASS')
elif(b+c+d>100):
print('FAIL')
Problem Link: PASSTHEEXAM Problem - CodeChef
@hemang12345
few mistakes have corrected your code hope u will get it.
# cook your dish here
a=int(input())
for i in range(a):
b,c,d=map(int,input().split())
if(b>=10 and c>=10 and d>=10 and (b+c+d)>=100):
print('PASS')
else:
print('FAIL')