Please help me with the task: Input your name .

Hello, I’m working on this task:

Here is my code:


print("Input your name, please.")
name = # Read a line from the screen
print(f"My greetings, {name}!")
#print("Input your name, please: ")
name = input()
print(f"Hi, {name}!")

Can anyone please help me to solve it?