name = input("What is your name? ") print( "Hello",name ) if name == "Phoenix": 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