#include <iostream>
#include <string>
#include <vector>

struct pidor
{
	std::string board;
	int thread;
	int post;
};

int main()
{
	pidor pidorok = {"pr", 683899, 685384};
	std::vector<pidor> blacklist;
	blacklist.push_back(pidorok);
	return 0;
}