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