Write a program that asks the user for his name and then welcomes him. The output should look like this:

Enter your name: Saksham
Hello Saksham

Source Code

name = input("Enter your name: ")
print("Hello", name)

Output

Enter your name: Saksham
Hello Saksham