大数乘
Submit solution
Points:
100
Time limit:
1.0s
Memory limit:
32M
Problem types
Allowed languages
C, C++, Java, Python
Description
编程实现大数乘法。
Input
每组数据有两个大整数,若该数为0 0,表示输入结束。
Output
对于每组大数,输出其积,每个结果占一行。
Sample
Input
2 3
12 34
0 0
Output
6
276
Comments