Computer Science, asked by shibas204, 8 hours ago

Program to find the product of two number & disply it.​

Answers

Answered by pankajsaraf53
0

Explanation:

Program to Multiply Two Numbers

printf("Enter two numbers: "); scanf("%lf %lf", &a, &b); Then, the product of a and b is evaluated and the result is stored in product . product = a * b; Finally, product is displayed on the screen using printf() .

Answered by stranger0000
0

Answer :

#Python program to print the product of two numbers

num1 = int(input("Enter Number: "))

num2 = int(input("Enter Number: "))

product = num1 * num2

print("Product of the numbers =", product)

Similar questions