Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

lucky number codechef solution

# lucky no codechef problem in python


for _ in range(int(input())):
	a,b,c = list(map(int,input().split()))

	if 7 in (a,b,c):
		print('Yes')
	else:
		print("No")
 
PREVIOUS NEXT
Tagged: #lucky #number #codechef #solution
ADD COMMENT
Topic
Name
5+9 =