tanya_zheleva

7

Feb 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Numerics;
  5.  
  6. namespace ExamPreparation
  7. {
  8.     public sealed class Preparation
  9.     {
  10.         public static void Main()
  11.         {
  12.             BigInteger first = BigInteger.Parse(Console.ReadLine());
  13.             BigInteger second = BigInteger.Parse(Console.ReadLine());
  14.             BigInteger product = first * second;
  15.  
  16.             Console.WriteLine(product);
  17.         }
  18.     }
  19. }
Add Comment
Please, Sign In to add comment