so I have a template function:
int someFunc(int num) { int a = num / 2; int b = num + 10; return a + num / b + b; } template