Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Input

The code below should read the user's name, but it has a bug. Fix it!

Example input: Alex Expected output: Hello, Alex!

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
name = input
print(f"Hello, {name}!")