import java.util.*;
import java.math.*;
public class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
String str1=sc.nextLine();
String str2=sc.nextLine();
BigInteger bi1=new BigInteger(str1);
BigInteger bi2=new BigInteger(str2);
System.out.println(bi1.add(bi2));
}
}
}
import java.math.*;
public class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
String str1=sc.nextLine();
String str2=sc.nextLine();
BigInteger bi1=new BigInteger(str1);
BigInteger bi2=new BigInteger(str2);
System.out.println(bi1.add(bi2));
}
}
}