int A(int x, int y) { if (x == 0) return y + 1; else if (x > 0 && y == 0) return A(x - 1, 1); else if (x > 0 && y &