思路:分别得到两个数,然后输出他们的乘积就可以了
---------------------------------------------------------------------------------------------
using System;
using System.IO;using System.Numerics;
namespace 大数相乘
{
class Program
{
static void Main(string[] args)
{
var a = BigInteger.Parse(Console.ReadLine());
var b = BigInteger.Parse(Console.ReadLine());
//直接输入转换成int类型的话在数据测试时会超时
// int a = Convert.ToInt32(Console.ReadLine());
//int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(a*b);
}
}
}