Find the Runner-Up Score!

  • + 10 comments

    a = int(input())

    b = (raw_input().split(" "))

    b.sort() #-----> sort is not working for negative numbers here only any idea ??

    print b

    b.reverse()

    print b

    for i in range(len(b)):

    if b[i] < b[0]:
    
        print b[i]
    
        break