Write a function that returns the sum of two numbers.
- For
param1 = 1
andparam2 = 2
, the output should besolution(param1, param2) = 3
.
-
[execution time limit] 5 seconds (ts)
-
[input] integer
param1
- Guaranteed constraints:
$-1000 \le param1 \le 1000$
- Guaranteed constraints:
-
[input] integer
param2
- Guaranteed constraints:
$-1000 \le param2 \le 1000$
- Guaranteed constraints:
-
[output] integer
- The sum of the two inputs.