Write a function that returns the sum of two numbers.

Example

For param1 = 1 and param2 = 2, the output should be

solution(param1, param2) = 3.

Input/Output

풀이

int solution(int param1, int param2) {
    return param1 + param2;
}