name = input( "What is your name?" ) print( "Hello", name ) if name == name : print( "You are awesome!" ) print( "----------------------------" ) print( "Security Check:" ) realPassword = "5Ecr3t" userPassword = input( "Enter the password: " ) if userPassword == realPassword : print( "Correct" ) print( "You are free to proceed" ) else: print( "Incorrect!" ) print( "System Locked" ) print( "----------------------------" )