input 2 numbers and print product and quotient
Answers
Answered by
0
Answer:
4 ÷6 , 5 × 7
Explanation:
it is write I hope it's help you
Answered by
1
Program:
Python
# Get both the numbers from the user
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
# Product -> multiplication
# Quotient -> divide both numbers
print("\n--------\nResults\n--------")
print("Product: ", a*b)
print("Quotient: ", round(a/b, 2))
Output:
Provided in the attachments...
Hope this helps you!
Attachments:
Similar questions