T. I/O Tutorial (0 points)

Time Limit: 1 seconds

Memory Limit: 1024 MB

Rating: 800

Problem Statement

Given a string $S$, output $S$.

Input

The first line has string $S$.

Output

Output $S$.

Sample Cases
How to take input in Python 3:
s = input()

How to give output in Python 3:
print(s)
Explanation

Note: Fast I/O is not required to solve this problem.

Sources

IanOJ Contest #2 (Div. 4) > Problem T

Submit | Back