#include <stdio.h>
#include <stdlib.h>

int main()
{
	int a, b, c;

	a = 3;
	b = 2;

	c = a + b;

	printf("%d\n", c);

	return EXIT_SUCCESS;
}

