3071: 练72.2  n-1位数

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

已知$w$是一个大于 $10$但不大于 $1000000$ 的无符号整数,若 $w$ 是 $n$($n≥2$) 位的整数,则求出 $w$的后 $n−1$ 位的数。

Input

第一行为 $M$,表示测试数据组数。
接下来 $M$ 行,每行包含一个测试数据。

Output

输出 $M$ 行,每行为对应行的 $n−1$ 位数(忽略前缀 $0$ )。如果除了最高位外,其余位都为 $0$,则输出 $0$。

Sample Input Copy

4
1023
5923
923
1000

Sample Output Copy

23
923
23
0