Thursday, December 8, 2016

Reading Raw Input

Task
Read a line of input from stdin and save it to a variable, . Then print the contents of to stdout.
Input Format
A single line containing sentence .
Constraints

Output Format
Print the contents of to stdout.
Sample Input
How many chickens does it take to cross the road?
Sample Output
How many chickens does it take to cross the road?
 

 

Python 3.0 Code:

value=raw_input()
print value