What will be the output of the following Python function when called with `my_func(1, 2)`? ```python def my_func(x, y=1): if x < y: x = 2 * x if x == y: x += 1 y -= 2 return (x, y) ``` | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz