A - Multiplication 1 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

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

制約

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

入力

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

AA BB

出力

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


入力例 1Copy

Copy
2 5

出力例 1Copy

Copy
10

2×5=102 \times 5 = 10 です。


入力例 2Copy

Copy
100 100

出力例 2Copy

Copy
10000

Score : 100100 points

Problem Statement

Compute A×BA \times B.

Constraints

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


Sample Input 1Copy

Copy
2 5

Sample Output 1Copy

Copy
10

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


Sample Input 2Copy

Copy
100 100

Sample Output 2Copy

Copy
10000


2025-04-22 (Tue)
03:00:35 +00:00