Multiply
Submit solution
Points:
1
Time limit:
2.0s
Memory limit:
256M
Problem types
Allowed languages
Python
Write a program that reads two integers and prints their product.
Input
The input contains two integers, a and b, on one line.
Output
Output the result of a × b.
Sample Input
3 5
Sample Output
15
Comments