You'll be given two intergers. The number of the digits of each is from 1 to 200, inclusive.
And what you need to do is to culcalate the product of the two intergers.
The number of the digits of the product won't be more than 400.
Input format:
Two lines in total.
The first line is an interger a(0 <= a < 10200), and the second line is an interger b(0 <= b < 10200).
Output format:
Only one line, which is the product of a and b.
Sample input:
12
2
Sample output:
24