#include "factory.h"
#include <iostream>
int main() {
	window* p=factory();
	string s;
	std::cin>>s;
	p->~window();
        return 0;
}
