Python Code
array = [int(n) for n in input().split()] ans = array[0]*array[1] print(str(ans))
但是这题的意思是大整数相乘,这样写占用内存太大。还得参考下C++的代码咋写的~