Q9Numerical3 Marks7 Jul 2024
What is the output of the following snippet of code? Enter an integer as your answer.
```
x = 15
y = 20
if x != y:
result = abs(x - y)
else:
result = x + y
print(result)
```
Press Enter to check.
Programming in Python · Week 2