def extract_arguments(fh):
    n = int(fh.readline().strip())
    S = list(map(int, fh.readline().strip().split()))
    return n, S