This tutorial describes a Python program that multiplies two numbers.


In this topic, you will learn how to multiply two integers in the Python programming language.


#Made By GT
fir=int(input("Enter the first number: "))
#input value for variable num1
sec=int(input("Enter the second number: "))
#input value for variable num2
mul=fir*sec;
#perform multiplication operation
print("the product of given numbers is: ",mul)
#display the product
 
x