import java.util.*;
import java.math.*;//引入包含BigInteger(21亿以上的大整数)类的包
public class Main
{
public static void main(String[] args)
{
fun();
}
public static void fun()
{
Scanner sr=new Scanner(System.in);
while(sr.hasNext())
{
String str1=sr.nextLine();
String str2=sr.nextLine();
BigInteger b1=new BigInteger(str1);
//由于用例输入值超过Integer类的最大值2147483647,所以需将字符串转换为BigInteger类型
BigInteger b2=new BigInteger(str2);
System.out.println(b1.add(b2));
}
sr.close();
}
}