#include <iostream>
using namespace std;

class Point {
public:
	double x = 0;
	double y = 0;

	Point() { }
};

int main() {
	Point p;
	
	std::cout << "Point (x = " << p.x << ", y = " << p.y << ")" << std::endl; 
	
	return 0;
}