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