summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/tak.py
blob: 9b7bd8f23c89d01fdb63577f5d9a372978a8dcef (plain)
1
2
3
4
5
6
7
8
def tak(x, y, z):
	if not(y<x):
		return z
	else:
		return tak(tak(x-1, y, z),
		           tak(y-1, z, x),
		           tak(z-1, x, y))
tak(18, 9, 0)