#Sam Ola
#10/9/2021
#In this lesson i learned how to use multiplication in python
#I didn't fully understand how to do task 2 and 3 because they didn't resemble to the example and i dont remember seeing anything like it in the notes
# [ ] review and run example
print("3 + 5 =",3 + 5)
print("3 + 5 - 9 =", 3 + 5 - 9)
print("48/9 =", 48/9)
print("5*5 =", 5*5)
print("(14 - 8)*(19/4) =", (14 - 8)*(19/4))
# [ ] review and run example - 'million_maker'
def million_maker():
make_big = input("enter a non-decimal number you wish were bigger: ")
return int(make_big)*1000000
print("Now you have", million_maker())
print(43 - 15)
print(15 * 43)
print(156/12)
print(21/0.5)
print(111 + 84 - 45)
print((21 + 4)* 4 )
def multiply():
multi = int(input('print two whole numbers'))
return str(multi)
#i dont understand this at all
# Review, run, fix
student_name = input("enter name: ").capitalize()
if student_name.startswith("F"):
print(student_name,"Congratulations, names starting with 'F' get to go first today!")
if student_name.startswith("G"):
print(student_name,"Congratulations, names starting with 'G' get to go second today!")
else:
print(student_name, "please wait for students with names staring with 'F' and 'G' to go first today.")