Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Linq;
- using System.Text;
- using System.Numerics;
- namespace ExamPreparation
- {
- public sealed class Preparation
- {
- public static void Main()
- {
- BigInteger first = BigInteger.Parse(Console.ReadLine());
- BigInteger second = BigInteger.Parse(Console.ReadLine());
- BigInteger product = first * second;
- Console.WriteLine(product);
- }
- }
- }
Add Comment
Please, Sign In to add comment