We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.inputString=raw_input()# Print a string literal saying "Hello, World." to stdout.print'Hello,World.'# TODO: Write a line of code here that prints the contents of input_string to stdout.printinputString
Python 3
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.input_string=input()# Print a string literal saying "Hello, World." to stdout.print('Hello,World.')# TODO: Write a line of code here that prints the contents of input_string to stdout.print(input_string)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all comments →
Python 2
Python 3