游客 Signup | Login
中文 | En

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

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

Input

输入任意两个数

Output

他们的积

Examples

Input

1
2

Output

2

Solution C++

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

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题