name = input( "What is your name?" ) print( "Hello", name ) if name == "Jim" : print( "You are awesome!") print( "------------------" ) print( "Sercurity Check:" ) realPassword = "nibs" userPassword = input( "enter the password:" ) if userPassword == realPassword : print( "FISH!" ) print( "free to go" ) else: print( "LOUD INCORECT BUZZER.MP3" ) print( "a squad of f-15s are 100m from your location" ) print( "START RUNNING" )