height = 1.85 if height > 2 : print( "You are tall!" ) else: print( "You look like an oompa lumpa you are so short" ) name = input( "What is your name?" ) print( "Hello", name ) if name == "Ben" : print( "You are the coolest person ever" ) 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 there is a low life here trying to hack the servers" )