Problem1539--累乘数字

1539: 累乘数字

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

我们知道将一个大于1的数乘以另一个大于1的数会使乘积大于任意一个乘数。
现在给出两个数字 n, d,你能否计算将n乘以d次100的结果。

Input

每组输入在一行中给出1≤n,d≤100。

Output

每组输入输出一行代表答案。

Sample Input Copy

5 1
11 1
85 2

Sample Output Copy

500
1100
850000

Source/Category

admin