Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 662 Bytes

File metadata and controls

39 lines (25 loc) · 662 Bytes

Add


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

  • [execution time limit] 4 seconds (py3)

  • [input] integer param1

    Guaranteed constraints:
    -1000 ≤ param1 ≤ 1000.

  • [input] integer param2

    Guaranteed constraints:
    -1000 ≤ param2 ≤ 1000.

  • [output] integer

    The sum of the two inputs.



Solution

def solution(param1, param2):
    return param1 + param2

See on app.codesignal.com