2020-10-15 20:05:27 +02:00

7 lines
60 B
C++

#include "sub.h"
int sub(int a, int b)
{
return a - b;
}