A - Multiplication 1 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

A \times B を求めてください。

制約

  • 1 \leq A \leq 100
  • 1 \leq B \leq 100
  • 入力は全て整数である。

入力

入力は以下の形式で標準入力から与えられる。

A B

出力

A \times B を整数として出力せよ。


入力例 1

2 5

出力例 1

10

2 \times 5 = 10 です。


入力例 2

100 100

出力例 2

10000

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:

A B

Output

Print the value A \times B as an integer.


Sample Input 1

2 5

Sample Output 1

10

We have 2 \times 5 = 10.


Sample Input 2

100 100

Sample Output 2

10000