Read a name from input and print a greeting.
Input: A name (single word)
Output: Hello, [name]!
Example:
- Input:
Alice - Output:
Hello, Alice!
Use an f-string for clean formatting: f"Hello, {name}!". Don't forget the comma after "Hello" and the exclamation mark at the end.