# Get height and check if tall height = 1.85 if height > 2: print("You are tall!") else: print("You are not tall") # Get the user's name and greet name = input("What is your name? ") print("Hello", name) # Special message for "Jim" if name == "Jim": print("You are awesome!") print("----------------------------") print("Security Check:") # Password check realPassword = "donkey" userPassword = input("Enter the password: ") if userPassword == realPassword: print("Correct! You are free to proceed.") else: print("Incorrect! Call Security!!!") print("----------------------------") print("Number Check:")