Echo a Line
Read a whole line of text, spaces and all, and print it back.
Input format
A single line of text S that may contain spaces.
Output format
Print the whole line S back, unchanged.
Constraints
- Values fit in a 64-bit signed integer
- Trailing whitespace and a trailing newline are ignored by the judge
Read from stdin, write to stdout. Sample cases below show the exact format.
Sample cases
Example 1
Input
hello worldExpected output
hello worldExample 2
Input
keep codingExpected output
keep coding