print( "----------------------------" ) print( "Security Check:" ) realPassword = "donkey" PeterPassword = "petersneal" userPassword = input( "Enter the password: " ) if userPassword == realPassword : print( "Correct" ) print( "You are free to proceed" ) elif userPassword == PeterPassword : print ( "Peter Sneal mode started" ) print( "You now can do anything" ) else: print( "Incorrect!" ) print( "Call Security!!!" )