카테고리 없음

두수의 합

늘곰's 2023. 7. 25. 19:35
function solution(num1, num2) {
    var answer = -1;
    answer = num1 + num2
    return answer;
}