What will be the output of the function `check_input(1, 3)` as defined below? ```python def check_input(x, y): if x < y: x = x + 1 if x < y: x = x + 1 if x < y: x = x + 1 return x ``` | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz