Q1Numerical3 Marks23 Feb 2025
Consider the following code snippet. What will be the output of this code?
```
x = 25
y = 40
if min(x, y) < 20:
result = min(x, y)
else:
result = x + y
print(result)
```
Press Enter to check.
Programming in Python · Week 3