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) if name == "Jim" : print("You are awesome") 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") print("-------------------") print("Number Check:" ) num1 = int( input( "Enter first number: " ) ) num2 = int( input( "Enter second number: " ) ) if num1 > num2 : print("First numbers is biggest") elif num1 < num2 : print( "Second number is biggest") else: print( "Numbers are equal")