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