#AT1595. A - Multiplication 1

A - Multiplication 1

A - Multiplication 1

Score : $100$ points

Problem Statement

Compute $A \times B$.

Constraints

  • $1 \leq A \leq 100$
  • $1 \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 $A \times B$ as an integer.


2 5
10

We have $2 \times 5 = 10$.


100 100
10000