name= input("What is your name? ") print("Hello", name) if name == "Flynn" : print("You are awesome!") print("_________________________________") print("Sercurity Check:") realPassword= "donkey" userPassword= input("Enter the password: ") if userPassword == realPassword : print("Correct") print("You are free to proceed") else: print("Incorrect!") print("Calling Sercurity!!!") print("_________________________________") print("Number Check:") num1= int(input("Enter 1st number: ")) num2= int(input("Enter 2nd number: ")) if num1 > num2 : print( "1st numbers is biggest" ) elif num1 < num2 : print( "2nd number is biggest" ) else: print( "Numbers are equal" )