Function summing of two integers X18635


Statement
 

pdf   zip

html

Complete the following program by implementing the function that sums two integers:

#include <iostrea

Input

Output

Public test cases
  • Input

    3 5
    2 1
    0 -3
    4 5
    9 15
    

    Output

    8
    3
    -3
    9
    24
    
  • Information
    Author
    Guillem Godoy
    Language
    English
    Official solutions
    C++
    User solutions