#include <iostream>

int main() 
{
	auto f = [](int a,int b){return!a+b;};
	int c = f(3, 4);
	std::cout << c << std::endl;
	return 0;
}


