본문 바로가기
C++

[프로그래머스] 두 수의 곱 구하기

by 띰쥬 2025. 8. 28.
728x90
반응형
SMALL

#include <string>
#include <vector>

using namespace std;

int solution(int num1, int num2) {
    return num1*num2;
}

728x90
반응형
LIST

댓글