#include<future>
#include<iostream>

int main()
{
    auto a = std::async([]()
	{
		std::cout << 42 << std::endl;
	});
    a.get();
    return 0;
}
