Problem5439--两个数的乘积

5439: 两个数的乘积

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

下面一段程序的功能是:输入两个数,输出两个数的和。

#include<bits/stdc++.h>
using namespace std;
int main() {
    int a,b,c;
    cin>>a>>b;
    c=a+b;//赋值语句,把a+b的结果赋值给c
    cout<<c<<endl;
    return 0;
}

你需要实现,输入两个数,输出这两个数的乘积

输入

输入两个整数 $a, b (-10^4 \leq a,b \leq 10^4)$。

输出

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

样例

输入

2 3

输出

6

输入

3 4

输出

12

Source/Category