#include <iostream>
using namespace std;

struct Point {
	int x, y;
};


int main() {

	Point pt1;

	struct Point pt2;

	return 0;
}