class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 * num2; return answer; } }
사칙연산 문제만 맨날 풀고 싶다.
·