Your task is to write and complete code in order to evaluate the results of four basic arithmetic operations. You can pick any two numbers and show output of the results of addition, subtraction, multiplication and division.
num1 = float(input(" Please Enter the First Value Number 1: "))
num2 = float(input(" Please Enter the Second Value Number 2: "))
# Add Two Numbers
add = num1 + num2
print(add)
# Subtracting num2 from num1
sub = num1 - num2
print(sub)
# Multiply num1 with num2
multi = num1 * num2
print(multi)
# Divide num1 by num2
div = num1 / num2
print(div)