Advertisement
martinvalchev

Sum_big_numbers

Feb 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 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 Sum_big_numbers
  9. {
  10.     class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             BigInteger num1 = BigInteger.Parse(Console.ReadLine());
  15.             BigInteger num2 = BigInteger.Parse(Console.ReadLine());
  16.  
  17.             BigInteger result = num1 + num2;
  18.             Console.WriteLine(result);
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement