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!!!" )