#include <iostream>

using namespace std;

const int five(  )
{
	const int i = 5;
}

int main() {
	cout << five(  ) << endl;
	return 0;
}