코딩 테스트/Lv.0
using System; public class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 + num2; return answer; } }