#include <stdio.h>

int a, b;

int main ()
{
#ifndef ONLINE_JUDGE
	freopen ("test.in", "r", stdin);
	freopen ("test.out", "w", stdout);
#endif
	int a, b;
	scanf ("%d %d", &a, &b);
	printf ("%d\n", a + b);
	return 0;
}