Computer Science, asked by SabrinaHaque, 1 month ago

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 tsnikhilraj2009
2

Answer: if python then:

name= input ("Enter your name: ")

print ("Hello",name)

Explanation:

Similar questions