Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Prompt

This program should ask the user for their name, but the prompt text is in the wrong place. Fix it!

Example input: Alex Expected output: Hello, Alex!

💡 Hints

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