#abc169a. [abc169_a]Multiplication 1

[abc169_a]Multiplication 1

Problem Statement

Compute AtimesBA \\times B.

Constraints

  • 1leqAleq1001 \\leq A \\leq 100
  • 1leqBleq1001 \\leq B \\leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the value AtimesBA \\times B as an integer.


Sample Input 1

2 5

Sample Output 1

10

We have 2times5=102 \\times 5 = 10.


Sample Input 2

100 100

Sample Output 2

10000