D. A program gets two numbers (Num1 and Num2) as input and multiplies them. It then shows the
answer (Product). Choose from the steps given in the box and complete the flowchart.
Stop
Show Product Get Num1 Start Product = Numl Num2 Get Num2
Answers
Answered by
1
Answer:
Num1 = int(input ("Enter Number one"))
Num2 = int(input ("Enter Number Two"))
product = Num1*Num2
print (f"The product of two numbers is {product}")
Similar questions