1806: 乘积运算

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:175 Solved:88

Description

【问题描述】

给定两个数a、b,计算它们的乘积。
【输入格式】
一行两个整数a、b,以空格分隔。(0<a,b<108)

【输出格式】
输出一个整数,表示a、b的乘积。
【样例输入】
123456 123456
【样例输出】
15241383936

 

Input

一行两个整数a、b,以空格分隔。(0<a,b<108)

Output

输出一个整数,表示a、b的乘积。

Sample Input Copy

123456 123456

Sample Output Copy

15241383936

Source/Category