#include <iostream>
using namespace std;
 
int main() 
{
	int i = 20;
 
	[&](int j){std::cout << i << " - " << j; }(30);
 
	return 0;
}