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