hello name

Write a program that takes w as input and prints hello followed by the given word w.

w= input()

print("Hello " + w)

Comments