1 2 3 4 5 6 7 8 9 10 11
def sprint(str): global __vesti_output_str__ __vesti_output_str__ += str def sprintn(str): global __vesti_output_str__ __vesti_output_str__ += f"{str}\n" def sprintln(str): global __vesti_output_str__ __vesti_output_str__ += f"{str}\n\n"