#include <iostream>
using namespace std;

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