#include <iostream>
#include <atomic>

struct A {
	std::atomic_bool b = false;
};

int main()
{
	A a;
	std::cout << a.b;
	return 0;
}
