Given a name S. Print "Hello, (name)" without parentheses. Input Only one line containing a string S. Output Print "Hello," without quotes, then print name.
Example input programmer output Hello, programmer
Answers
Answered by
2
Answer: if python then:
name= input ("Enter your name: ")
print ("Hello",name)
Explanation:
Similar questions