name = input( "What is your name?" )
print( "Hello", name )

if name == "Jim" :
    print( "You are awesome!" )

print( "Security Check:" )

realPassword = "Nit"
userPassword = input( "Enter the password: " )

if userPassword == realPassword :
    print( "Correct" )
    print( "You are free to proceed" )

else:
    print( "Incorrect!" )
    print( "Call Security!!!" )