fork download
  1. # your code goes here
  2. a = [1,2,3,9,9,2,3,4,6,5,7,8,5,6]
  3.  
  4. a.sort()
  5. print a.remove(max(a))
  6. print a[-1]
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
None
9