Solution Exercise 1

Write a program that asks for the name of the user and then prints the message:

Hi name

Name should be the name the user entered.

def main():
    name = input("What is your name?")
    print("Hi", name)


if __name__ == '__main__':
    main()