Read a single line of text from input and print it back exactly as given.
Input: A single line of text
Output: The same line, unchanged
Example:
- Input:
Hello World - Output:
Hello World
Use input() to read and print() to output. This is the simplest input/output exercise, but it's fundamental to all interactive programs.