My code
Read 3 numbers as input
Add the first 2 numbers
Multiply the result by the third number
Output the final result if it is greater than 100
Otherwise output the first number
I have no clue what I am doing
num1=float(input("Please enter A number")) num2=float(input("Please enter another number")) num3=float(input("Please enter another number")) num1+num2=num4 print(num4) Sum*num3=totalwhat I need to do:
Read 3 numbers as input
Add the first 2 numbers
Multiply the result by the third number
Output the final result if it is greater than 100
Otherwise output the first number
I have no clue what I am doing
