#include <iostream>
using namespace std;

int x = 100500;

int main() {
	auto f = [&]() { cout << x << endl; };
	f();
	return 0;
}