🔥
0
0 XP
Lv.1 Beginner
Log In
Home
/
Python
/
Getting Started
/
Conditions
/
Fix The Indent
/
Exercise
Fix the Indent
This program has indentation errors. Fix them!
Example input:
20
Expected output:
Adult
💡
Hints
?
Hint 1
Reveal (-5 XP)
🔒
Hint 2
🔒
Hint 3
python
Reset
9
1
2
3
4
5
age
=
int
(
input
())
if
age
>=
18
:
print
(
"Adult"
)
else
:
print
(
"Kid"
)
▶ Run
Visualize
✓ Submit
← Even or Odd
Grade Checker →