name = input( "What is your name?" ) print( "Hello", name ) if name == name : print( "You are awesome!" ) print( "----------------------------" ) print( "Security Check:" ) realPassword = "WWW.WWW.OPEN" 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( "The 1st number is bigger" ) elif num1 < num2 : print( "The 2nd number is bigger" ) else: print("Numbers are the same!")