101690: [AtCoder]ABC169 A - Multiplication 1

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

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

Input

题意翻译

输入两个整数,输出他们的积。

加入题单

算法标签: