def read_input_data(path: str) -> str: with open(path, 'r') as f: data = f.read() return data