package asd;

import java.util.Scanner;

public class ApB {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(sc.nextInt() + sc.nextInt());
		sc.close();
	}

}