// math.cpp #include "math.h" int add(int a, int b) { return a + b; } int sub(int a, int b) { return a - b; }