print("-------------------------------") print( "Security Check:" ) realPassword = "donkey" userPassword = input( "Enter the password: " ) if userPassword == realPassword : print( "Correct") print( "You are free to procceed!") else: print( "Incorrect! ") print( "Please try again")