name = input("Enter Name: ")

if not name:
	name = "World"

print("hello " + name + "!")
