Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
olaaa
Dec 1st, 2019
133
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.19 KB
| None
|
0
0
raw
download
clone
embed
print
report
int A(int m, int n) {
if (m == 0) {
return n + 1;
}
else if ((m > 0) && (n == 0)) {
return A(m - 1, 1);
}
else if ((m > 0) && (n > 0)) {
return A(m - 1, A(m, n - 1));
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
✅ Profit Method
JavaScript | 1 sec ago | 0.25 KB
Exchange Exploit
JavaScript | 12 sec ago | 0.25 KB
⭐⭐⭐Free Giftcards Method⭐⭐⭐
Java | 13 sec ago | 0.06 KB
Swapzone Glitch ✅ Working
JavaScript | 14 sec ago | 0.25 KB
✅ MAKE $2500 IN 15 MIN
JavaScript | 23 sec ago | 0.25 KB
⭐⭐⭐Crypto Accounts⭐⭐⭐
Java | 27 sec ago | 0.06 KB
✅ Instant BTC Profit Method
JavaScript | 27 sec ago | 0.25 KB
✅ Profit Method
JavaScript | 35 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!