print ( "-------------------------------------" ) print ( "security check:" ) realpassword = "Donkey" userpassword = input ( "Enter password:" ) if userpassword == realpassword : print( "Correct" ) print( "You are free to proceed" ) else: print ("Incorrect") print("call security!!!")