天天看點

模拟與高精度——A*B Problem模拟與高精度——A*B Problem

模拟與高精度——A*B Problem

題目描述

求兩數的積。

輸入格式

兩行,兩個整數。

輸出格式

一行一個整數表示乘積。

輸入輸出樣例

輸入樣例

1

2

輸出樣例

2

說明/提示

每個數字不超過 10^2000,需用高精。

python 代碼如下:

a = int(input())
b = int(input())
print(a*b)
           

繼續閱讀