2609: 进制转换1

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:14 Solved:4

Description

将一个长度最多为30位数字的十进制非负整数转换为二进制数输出。

Input

多组数据,每行为一个长度不超过30位的十进制非负整数。
(注意是10进制数字的个数可能有30个,而非30bits的整数)

Output

每行输出对应的二进制数。

Sample Input Copy

985
211
1126

Sample Output Copy

1111011001
11010011
10001100110