10528 - A+B OOP   

Description

 a + b

 

class Adder {

public:

Adder();

int add2(int a, int b);

};

 

implement this class

Input

 two number

Output

 1 number

Sample Input  Download

Sample Output  Download

Tags




Discuss