Preface
By finding some free time in my schedule, I quested myself into improving my recursion skills (unfortunately). As practice, I want to recreate a
public static int add (int a, int b) { if (b == 0) return a; if (b > a) return add (b, a); add (++a, --b); }
Just with ++/--.