Respuesta :

Answer:

Assuming the language is Python 3 or above:

def main():

# Initialize variables

   tallEnough = False

   oldEnough = False

# Get input

   tallEnough = input("INSERT TEXT")

   oldEnough = input("INSERT TEXT")

if(tallEnough == True && oldEnough == True):

   print("True")

else:

   print("False")

I hope this helps! Let me know if you have any further questions!