문제링크 - 프로그래머스 - 두 수의 곱
class Solution { public int solution(int num1, int num2) { int answer = num1*num2; return answer; } }