#P3. 复读机

复读机

Description

You are given some positive integers. Please print them as is.

Hint

This problem aims at testing file input and output. Please do file IO with the specified file name rather than operating standard IO.

Hover the mouse onto the File IO icon to view file name.

Input

Each test contains multiple test cases.

The first line contains the number of test cases T T .

Then come T T lines, with one integer per line.

Output

Print T T lines with the corresponding integer at every line.

3
1
2
3
1
2
3
1
1000000000000000000000000000000000
1000000000000000000000000000000000

Data Limits

For all subtasks, 1T10,1a101000 1 \leq T \leq 10, 1 \leq a \leq 10 ^ {1000} .

Subtask 1 (10 Points) 1a3 1 \leq a \leq 3 ;
Subtask 2 (20 Points) 1a100000 1 \leq a \leq 100000 ;
Subtask 3 (70 Points) has no additional limitations.