Python - Conditional Statements
What will be the output of this code?
age = 20
if age < 18:
print("Child")
elif age < 65:
print("Adult")
else:
print("Senior")