SDE Path

Echo a Line

Easy

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 world
Expected output
hello world
Example 2
Input
keep coding
Expected output
keep coding