51nod1027-1028 大数乘法(python)

基准时间限制:1 秒 空间限制:131072 KB 分值: 0  难度:基础题
 收藏
 关注
给出2个大整数A,B,计算A*B的结果。
Input
第1行:大数A
第2行:大数B
(A,B的长度 <= 1000,A,B >= 0)
Output
输出A * B
Input示例
123456
234567
Output示例
28958703552
#!/usr/bin/python3
a=int(input())
b=int(input())
print(a*b)

猜你喜欢

转载自blog.csdn.net/qq_40922859/article/details/80345640