import java.math.BigInteger;
import java.util.Scanner;


    static Scanner console = new Scanner(System.in);

    public static void main(String[] args) {
        int a;
        int b;

        b = console.nextInt();
        a = console.nextInt();

        System.out.println(sum(a,b));
    }

    public static BigInteger sum(int a , int b){
        BigInteger bigA = new BigInteger(String.valueOf(a));
        BigInteger bigB = new BigInteger(String.valueOf(b));
        return bigA.add(bigB);
    }