#P5042. Echo the Input

    ID: 18280 Type: Default 1000ms 256MiB

Echo the Input

Echo the Input

In this problem, you are required to read an input text and output it exactly as it is without any modifications. This is a traditional problem with full-text comparison, meaning that your output must match the input exactly, including whitespaces and newlines.

You are given the entire input on standard input, and you should print it to standard output.

Note: Even the slightest deviation from the input (extra spaces, missing newlines, etc.) may cause your solution to be rejected.

inputFormat

The input consists of an arbitrary text which may span multiple lines and include spaces, punctuation, and other characters. The entire content of the input must be echoed.

outputFormat

Output the exact same text provided in the input. The output must be identical to the input.

sample

Hello, World!
Hello, World!