print("----------------------------------") print("Security check") realpassword = "donkey" userpassword = input("Enter the password: ") if userpassword == realpassword : print("correct") print("You are free to proceed") else: print("Incorrect") print("Call security")