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