[BOJ/C++] 10998 A*B

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
4/73

곱셈 문제

#include <iostream>

using namespace std;

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

	return 0;
}
profile
log

0개의 댓글