游客 Signup | Login
中文 | En

2608 - 输入任意两个数,求他们的积。

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 128 MB

输入任意两个数,求他们的积。

Input

输入任意两个数

Output

他们的积

Examples

Input Format

1
2

Output Format

2

Solution C++

#include <iostream>
using namespace std;
int  main()
{
    int a,b;
    cin >> a >> b;
    cout << a*b << endl;
    return 0;
}