Computer Science, asked by UsarshiDas9433, 6 hours ago

input 2 numbers and print product and quotient​

Answers

Answered by carmelite21
0

Answer:

4 ÷6 , 5 × 7

Explanation:

it is write I hope it's help you

Answered by MichMich0945
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