Exercise 3 · Chapter: ConditionsRequired+50 XP
Fix the Indent
This program has indentation errors. Fix them!
Example input: 20
Expected output: Adult
Need a hint?
3 available · costs 5 XP each
python
age = int(input())
if age >= 18:
print("Adult")
else:
print("Kid")
Output
Run your code to see the output here.