name = "Boon" age ="15" print(name) print(age) print (name, "is" ,age ,"year old") age = 15 + 10 print (age) print ("hello world") print (100) print ( "lando", "Esteban") print ("score:" ,26) print ( "__________________") print ( "some maths:") print (name) print( "99 time 5 is",99*5) print("25 divided by 3 is " ,25/3) print("_____________") print("Greeting") name = input( "What is your name? " ) print(name) print( "Hello ", name ) print("_______________") print ( "Let's Do More Math!" ) num1 = int( input("5*2") ) num2 = int( input("10*2") ) print( num1, "+", num2, "=", num1+num2) print( num1, "-", num2, "=", num1-num2) print( num1, "*", num2, "*", num1*num2) print( num1, "/", num2, "=", num1/num2) name = input( "What is your name?" ) colour = input( "What colour do you like" ) age = int( input( "what is your age? " ) ) weight= int( input( "What is you weight?" ) ) year = int( input( "What year are you in?") ) height = float( input( "Your height: " ) ) height = 1.85 if height > 2 : print( "You ara tall") height = 1.85 if height > 2 : print( "You are tall") else : print( "You are not tall") print( "_______________________" ) print( "Security Check:" ) realPassword = "Boon9586" 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 numbers is biggest" ) else: print( "Number are equal" ) print ( "_______________________________________") print( "I can count to 10:" ) for number in range( 1,11 ) : print( number ) print ( "____________________________" ) print( " Here's the times table:" ) number = 5 for multiplier in range ( 1, 13) : result = multiplier * number print( multiplier , "times" , number , "=" , result ) print ( "________________________________________" ) print( "countdown to launch" ) count = 10 while count > 0 : print( count ) count = count - 1 print( "BLAST OFF!" ) print ( "__________________________________________________" ) print ( "Troll attack :") import random health = 100 print () print ( "You are attacked by a troll!" ) print ( " Your health :" , health ) while health > 0 : print() print( "the troll swings his axe" ) damage = random.randint ( 5,20 ) health = health - damage print ( "You take" , damage , "Damage " ) print ( "Your health:" , health) print () print ( "You are DEAD!" ) print ( "________________________________________________________" ) name1 = input( "What is the first person's name: ") length = len( name1 )