#include <iostream>

using namespace std;

class C {
	public:
		int x;
		int y;

		C(int _x, int _y) : x(_x), y(_y) {}

		void prt()
		{
			cout << x << " " << y << endl;
		}
};


int main()
{
	C ob(10,20);

	ob.prt();

	return 0;
}

