What is the output of the following Python code snippet?x = 15y = 4result = x // y + (x % y)print(result)