A string
Question
We are providing a string as an input to your program.Your job is to add the string , hello!to the string
we provide you and then output it.
Make sure you include the space after the comma!
# Input from the command line
import sys
name = sys.argv[1]
# Write code below