#618. Ackman函数

Ackman函数

题目描述

Ackman函数的定义如下

$$\text{ack}(m,n)= \left\{ \begin{aligned} n+1 & & {m=0} \\ \text{ack}(m-1,1) & & {n=0} \\ \text{ack}(m-1,\text{ack}(m,n-1) & & {\text{otherwise}} \end{aligned} \right. $$

输入格式

一行包含两个正整数 m,nm,n

输出格式

ack(m,n)\text{ack}(m,n)

2 5
13

数据范围

0m,n50 \le m,n \le 5