Write a program to accept two numbers from the user and calculate multiplication
Hint:
input()
int()
Solution:
num1 = int(input("Enter first number ")) num2 = int(input("Enter second number ")) res = num1 * num2 print("Multiplication is", res)
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Hint:
input()
to accept user inputint()
constructor.Solution:
need an explanation for this answer? contact us directly to get an explanation for this answer