• + 0 comments

    Python 3 generates random hash number every time. Its impossible to match the answer. Please Use Python 2

    if __name__ == '__main__':
        n = int(raw_input())
        integer_list = map(int, raw_input().split())
        
        print(hash(tuple(integer_list)))
    
    #    n = int(input())
    #    t = tuple(int(i) for i in input().split())
    #    print(hash(t))