Q13Single correct2 Marks16 Jul 2023
Consider the following Python code snippet. What will be the output when you run the code?
```
x = 15
y = 20
if x > y:
result = x - y
elif x < y:
result = y - x
else:
result = x + y
print(result)
```