def extract_arguments(fh):
    N = int(fh.readline().strip())
    S_1 = fh.readline().strip()
    S_2 = fh.readline().strip()
    return N, S_1, S_2