161k views
2 votes
Someone help please???

Someone help please???-example-1
User Adam Goss
by
3.2k points

1 Answer

3 votes

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!

User CostelloNicho
by
3.6k points