L. Amazing Teacher
time limit per test
1 second
memory limit per test
1024 megabytes
input
standard input
output
standard output

We all dreamed about that teacher who gives us the mark we want. Lately we started dreaming about the teacher who gives as what we deserve at least.

Today is your day, we are giving you the chance to write a code which take the mark of the student and change it to $$$10$$$ directly then print it.

But wait, we can't give a student with an empty paper a mark of $$$10$$$. so at least their origin mark should be greater than zero to get $$$10$$$.

Input

The first line contains a single integer $$$t$$$ $$$(1 \le t \le 11)$$$ — the number of test cases.

each test case consists of a single line contains a single integer $$$n$$$ $$$(0 \le n \le 10)$$$ — the origin mark of the student.

Output

For each test case, print one integer — print $$$10$$$ if the origin mark is greater than zero, and print zero otherwise.

Example
Input
3
0
5
9
Output
0
10
10