두수의 합

canyi·2023년 2월 8일
0

프로그래머스

목록 보기
2/17

문제링크
https://school.programmers.co.kr/learn/courses/30/lessons/120802

#include <string>
#include <vector>

using namespace std;

int solution(int num1, int num2) {
    int answer = -1;
    answer = num1 + num2;
    return answer;
}
profile
백엔드 개발 정리

0개의 댓글