사칙연산중 덧셈의 문제입니다.
class Solution { public int solution(int num1, int num2) { int answer = num1+num2; return answer; } }