#include "./my/includes/my.h"
int main()
{
int a = 10, b = 20;
printf("10+20=%d\n", sum(a, b));
printf("20-10=%d\n", sub(b, a));
return 0;
}