#1. A * B Problem

Type : Normal Time Limit : 1000 ms Memory Limit : 512 MiB
Input File : Standard Input Output File : Standard Outout Checker : Text Comparison

给定两个数 $a$ 和 $b$,请输出它们的积。


输入格式

一行,两个用空格隔开的整数 $a$ 和 $b$。

输出格式

一个整数,表示 $a \times b$。


样例一

input

2 3

output

6

限制与约定

$0 \leq a, b \leq 10^4$

时间限制:$1\texttt{s}$

空间限制:$512\texttt{MB}$


下载

样例数据下载