#include "calc.h" int add(int x, int y) { return x + y; } int subtract(int x, int y) { return x - y; }