def main(): x = 1 y = 3 print(x,y) change_up(x, y) print(x,y) def change_up(a, b): a = 0 b = 0 print(a, b) main()