• + 0 comments
    if __name__ == '__main__':
        n = int(input())
        # convert the values in list to tuple
        integer_list = tuple(map(int, input().split()))
    
    
    # hash the tuple and print it
    print(hash(integer_list))