大數乘法

step1.輸入
step2.倒轉

step3.相乘

i:a[]  j:b[],c[]:初始值=0

for( i )

   for( j )

     c[i+j]+=a[i]*b[j];

step4.相加
step5.全部進位