#include "A.h" int A(int m, int n) { if (m==0) return n+1; if (n==0) return A(m-1, 1); return A(m-1, A(m, n-1)); }