Algorithm/Python, C++

백준 10998_AxB [C++]

liveloper jay 2021. 12. 9. 17:07

문제


소스코드

#include <iostream> using namespace std; int main() { int A, B; cin >> A >> B; cout << A*B; }