#P271. 练44.3 二进制串

练44.3 二进制串

Description

As we all know, data is stored in computers in binary form.
After learning about binary conversion, a student wants to try it out himself. Given a non-negative integer xx, he wants to convert it to binary. Can you help him solve this problem?

Input Format

The first line contains an integer tt (2t10002≤t≤1000).
The next tt lines each contain a number xx (1x1081≤x≤10^8), which is a non-negative integer.

Output Format

tt lines, each containing a binary string representing the binary form of each xx. (No leading zeros)

Sample

4
1
2
3
4
1
10
11
100