7 lines
82 B
C++
7 lines
82 B
C++
|
#include "calculator.h"
|
||
|
|
||
|
int Calculator::Add (int a, int b)
|
||
|
{
|
||
|
return a + b;
|
||
|
}
|