Program to multiply two numbers.

In this python basic program, we will multiply two numbers using the * operator.

Steps to solve the program

1. Take two numbers as input.
2. Multiply two numbers using the “*” operator.
3. Print the result.

Programs

num1 = 20
num2 = 40

print("Multiplication of num1*num2 :", num1 * num2)

Output

Multiplication of num1*num2 : 800