Write a python program to print the Multiplication of numbers from LOW to HIGH.
Answers
Answered by
0
Answer:
The program is
Explanation:
num1=int(input("Enter the first number: "))
#input value for variable num1
num2=int(input("Enter the second number: "))
#input value for variable num2
mul=num1*num2;
#perform multiplication operation
print("the product of given numbers is: ",mul)
#display the product
Enter the first number: 23
Enter the second number is: 32
the product of the given numbers is 736
num1=float(input("Enter first number: "))
#input value for variable num1
num2=float(input("Enter second number: "))
#input value for variable num2
mul=num1*num2;
#perform multiplication operation
print("the product of given numbers is:",mul)
#display the product
Enter first number: 3.43
Enter second number:21.2
product of given numbers is: 72.716
Similar questions