x, y = (1, 2) def foo(x=y, y=x): return (x+3, y+4) print(foo(5))