fork download
  1. def y(x):
  2. if x==0:
  3. return 81
  4. else:
  5. return y((x-1)*3)
  6. print(2)
Success #stdin #stdout 0.01s 8968KB
stdin
Standard input is empty
stdout
2