#Lutece0646. 搜索回文数
搜索回文数
Migrated from Lutece 646 搜索回文数
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
任意的一个正整数,将其反序(高低位交换),与原来的整数相加,得到新的整数后重复以上步骤,最终可以得到一个回文数,这就叫回文数猜想。
例如,:, , , 。是回文数,经过了步。
你的任务是对于给定的正整数(不超过),求出由上述方法得出的回文数。如果在上述过程中,数的位数已超过位,但还不是回文数,则中断该过程,并输出这个数。
Input
含多组测试数据,输入首先是一个整数表示测试数据组数()。随后有组测试数据,每组是一个整数,占一行。
Output
对应每组测试数据,输出按描述规定的结果,占一行。
Samples
2
291
27596
6996
175732667
Resources
wxiaoping - 2012