1 write a program to multiply two numbers using function python

Solutions on MaxInterview for 1 write a program to multiply two numbers using function python by the best coders in the world

showing results for - "1 write a program to multiply two numbers using function python"
Luciano
18 Feb 2018
1def add_num(a,b):#function for multiplication
2    multiply=a*b;
3    return multiply; #return value
4num1=int(input("input the number one: "))#input from user for num1
5num2=int(input("input the number one: "))#input from user for num2
6print("The product is",add_num(num1,num2))#call te function