int Morris(int a, int b) { if (a == 0) { return 1; } else { return Morris(a - 1, Morris(a, b)); } }