Advertisement
martinvalchev

Multiply_big_number

Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Numerics;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Multiply_big_number
  9. {
  10.     class Program
  11.     {
  12.      
  13.             static void Main(string[] args)
  14.             {
  15.                 BigInteger num1 = BigInteger.Parse(Console.ReadLine());
  16.                 BigInteger num2 = BigInteger.Parse(Console.ReadLine());
  17.  
  18.                 BigInteger result = num1 * num2;
  19.                 Console.WriteLine(result);
  20.             }
  21.         }
  22.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement