6 lines
64 B
C++
6 lines
64 B
C++
|
#include "driver.h"
|
||
|
|
||
|
int add(int x, int y)
|
||
|
{
|
||
|
return x + y;
|
||
|
}
|