Scan name of user and say Hello

Write a program to scan the name of the user and say hello to them.
Jon
Total : 1 Discussion
Login
Romy
    
Failing for 1 scenario
'''name = str(input('Enter your name: '))'''
name = 'Jon'
print("Hello " + name)
Reply