#include <iostream>
using namespace std;

struct point { ~point() { cout << "Destruktor\n"; } };

int main() {
	point p1, p2;
	return 0;
}