UOJ Logo 蜗牛编程训练题库

JZOJ

#1319. 【Atcoder_Abc169】T1 乘法运算1

Statistics
时间限制:1s    空间限制:512MB    输入文件:mul.in    输出文件:mul.out
当前24小时内您还剩30次提交本题的机会

题目描述

给你两个整数$A$和$B$,问你$A\times B$的值。

输入格式

一行,有两个用空格隔开的整数$A$和$B$。

输出格式

一行一个整数,表示你的答案。

样例数据

input

2 5

output

10

input

1000000 1000000

output

1000000000000

数据规模与约定

$1\leq A\leq 100,0000$

$1\leq B\leq 100,0000$

时间限制:$2 \text {s}$

空间限制:$1024 \text {MB}$

Solutions

标题 发表者 发表日期
None