프로그래머스

프로그래머스(JAVA) / 두 수의 합

bokboks 2023. 3. 18. 00:15

class Solution {
    public int solution(int num1, int num2) {
        int answer = -1;
        return answer =num1 + num2;
    }
}