height = 1.85 if height > 2 : print( "You are tall!" ) height = 2.05 if height > 2 : print( "You are tall!" ) height = 1.85 if height > 2 : print( "You are tall!" ) else: print( "You are not tall" ) name = input( "What is your name?" ) print( "Hello", name )