Python - Conditional Statements
What will be the output of this code?
age = 25
has_passport = True
if age > 18 and has_passport:
print('Allowed')
else:
print('Denied')