#Lutece0970. 数制转换

数制转换

Migrated from Lutece 970 数制转换

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

任给3232位二进制数字序列(整数的补码),把它转化为对应的十进制数和十六进制数。

Input

本题有多组测试数据,第一行是测试数据组数TT。下面每一行是3232位二进制数字序列。

Output

对应每组输入,输出一行对应的十进制整数和十六进制整数,中间用空格隔开。如果十六进制中数字超过99,用大写字母表示。

Samples

2
00000000000000000001010111111011
11111111111111111111111111100111
5627 15FB
-25 FFFFFFE7

Resources

wxiaoping 2009年C语言第八次上机