#include <iostream>
using namespace std;

int a;

int inc() {
	a += 1;
	return 1;
}

int main() {
	a += inc();
	cout << a << endl;
}