12345678910111213141516171819202122
#include <iostream> #include <conio.h> using namespace std; int A(int m, int n); void main(){ cout << A(0,1); _getch(); } int A(int m, int n){ if (m = 0){ return (n + 1); } else if (n = 0){ return A(m-1, 1); } else{ return A(m-1, A(m, n-1)); } }