Multiplication

The multiplication operator in Python is an asterisk ("*").

The following statement multiplies the numbers 3 and 4 and prints the result (12):

print (3 * 4)

Assignment

Write a program that prints the product of 5 and 6.

Save as "009.py".