``` def new_input(xi_new_value): global count count = xi_new_value ``` ``` # input ds.subheader('Input value') input_value: int = 0 input_value = ds.input('Input:', input_value, None, new_input(), (input_value)) ``` What is the right way to wright that?