fork(1) download
  1. def maks(a, b, c):
  2. return max(max(a, b), c)
  3.  
  4. print maks(3, 1, 2)
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
3