fork download
  1. def a(i):
  2. if i == 0:
  3. return '1'
  4. elif i == 1:
  5. return '2'
  6. else:
  7. return '3'
  8.  
  9. def b(i):
  10. if i == 0:
  11. x = '1'
  12. elif i == 1:
  13. x = '2'
  14. else:
  15. x = '3'
  16. return x
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
Standard output is empty