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 1st number: ")) num2 = int(input("Enter 2nd number: ")) if num1 > num2: print("1st number is biggest") elif num1 < num2: print("2nd number is biggest") else: print("Numbers are equal")