test = False
for valeur in add:
   if 10 in valeur:
      test = True
      break
      
print(test)
