Skip to main content

Print Hello, World. on the first line, and the contents of input string in the second line in python

python:-

inputString = raw_input()

print 'Hello, World.'

print inputString



Comments