BOJ|10998号



Pythonプール

A, B = input().split()
print(int(A)*int(B))
1000番1001番と同じように、2つの整数を入力して乗算するだけでいいです.

C++プール

#include <iostream>

using namespace std;

int main()
{
	int A, B;
	cin >> A >> B;
	cout << A * B;
}