Problem I: 24-高精度-大数乘

Problem I: 24-高精度-大数乘

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 2  Solved: 1
[Submit] [Status] [Web Board] [Creator:]

Description

给定一些大数,请计算其积。

Input

输入数据中含有一些整数对(对数≤1000),若某对整数(整数位数≤200)的值为0 0,则表示输入结束。

Output

每对整数对应一个乘法计算结果,输出该结果,每个结果输出完后应回车。

Sample Input

2 3
12 34
0 0

Sample Output

6
408

[Submit][Status]