#include <iostream>
#include <memory>

int main() {
	auto a = std::allocate_shared<std::allocator<int>>(std::allocator<int>{});
	
	return 0;
}