7 lines
60 B
C++
7 lines
60 B
C++
|
#include "add.h"
|
||
|
|
||
|
int add(int a, int b)
|
||
|
{
|
||
|
return a + b;
|
||
|
}
|