fork download
  1. box=[24,91,42,108,35]
  2. cc=len(box)
  3. a=box[0]
  4. i=1
  5. while i<cc:
  6. if box[i]>a:
  7. a=box[i]
  8. i=i+1
  9. print(a)
Success #stdin #stdout 0.03s 63300KB
stdin
Standard input is empty
stdout
108