#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{ 
	int a,b, c;
	a = 2;
	b = 5;
	c= a+b;
	cout<<c<<endl;
	system("PAUSE");
	return 0;
}