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