Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Indent

This program has indentation errors. Fix them!

Example input: 20 Expected output: Adult

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
age = int(input())
if age >= 18:
print("Adult")
else:
print("Kid")