Problem Statement
You are given two integers and . Determine their multiplication.
Input Format
Your only line of input will contain two space-separated integers and respectively.
Output Format
You should output the multiplication of the two integers, i.e. .
Constraints
Sample Cases
Input 1
10 20
Output 1
200
Template
temp = input().split()
a = int(temp[0])
b = int(temp[1])
# print your output
Comments