Coding is the closest thing we have to superpower !

20 : 依样画葫芦-两个数的积
描述

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

#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

输出

输出一个整数,表示 a,b

样例

输入

2 3

输出

6

输入

3 4

输出

12
语言:
主题: