using System; using System.Collections.Generic; using System.Diagnostics; using System.Numerics; class Program { static void Main() { BigInteger A = BigInteger.Parse(Console.ReadLine()); BigInteger B = BigInteger.Parse(Console.ReadLine()); Console.WriteLine(A + B); } }