def extract_arguments(fh):
    Q = int(fh.readline().strip())
    N = [int(fh.readline().strip()) for _ in range(Q)]
    return (Q, N)