# Day 1
# ___ _ _ ___ _ _ _
# / _ \_ __(_)_ __ | |_ ( _ ) /\ /\__ _ _ __(_) __ _| |__ | | ___ ___
# / /_)/ '__| | '_ \| __| / _ \/\ \ \ / / _` | '__| |/ _` | '_ \| |/ _ \/ __|
# / ___/| | | | | | | |_ | (_> < \ V / (_| | | | | (_| | |_) | | __/\__ \
# \/ |_| |_|_| |_|\__| \___/\/ \_/ \__,_|_| |_|\__,_|_.__/|_|\___||___/
# Assignment 1 stuff
print("Assignment one baby!!!!!!!")
# we well store variable as we go
#part 1
pi = 3.14159
Radius1 = 7
print("\n1. a) the area of the circle is:", pi*Radius1*Radius1)
print(" b) the circumference of the circle is:", 2*pi*Radius1)
# part 2
# _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_
side2 = 6
print("\n2. a) the volume of the cube is: ", side2*side2*side2)
print(" b) the surface are of the cube is: ", 6*side2*side2)
# part 3
# _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_
Radius3 = 22.7
print("\n3. a) the surface area of a sphere is: ", 4*pi*Radius3*Radius3)
print(" b) the volume of the sphere is: ", (4/3)*pi*Radius3*Radius1*Radius3)
# part 4
# _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_
Celsius = 10
Fahrenheit = (9/5)*Celsius+32
print("\n4. 10 degrees celsius converted into Fahrenheit would be ", Fahrenheit)
#part 5
# _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_
print("\n5.")
height = int(input("give me a height: "))
weight = int(input("give me a weight: "))
print("their ratio is ", weight/height)
#print 6
# _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_
Sales = 75000
Costs = 21000
Expenses = 34000
print("\n6. the profit is ", Sales-Costs-Expenses)