Q29Single correct3 Marks30 Apr 2023
What is the output of the following snippet of code?
```
def welcome(age):
if 0 < age < 18:
print('welcome boys and girls')
else:
print('welcome ladies and gentlemen')
print(welcome(50))
```