기초 문제입니다.
class Solution { public int solution(int num1, int num2) { int answer = num1*num2; return answer; } }