Help me in solving PYTH57 problem

My issue

Write a program which does the following

Declare a string variable x
Accept a text user input - the name of the user - and store it in the variable x
Output and print to the console Hello before the user defined name.
Remember to add a space between Hello and x
Sample 1:
Input
Output
Chef
Hello Chef

My code

# Update your code here
hhhhh

Learning course: Python Programming
Problem Link: Hello user Practice Problem in Python Programming - CodeChef

x = input()
print("Hello",x)

x = input()
print(“Hello”,x)