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