#include <iostream>

class test {
	private:

	int age;
	int height;

	public:

	void setage(int x) {
		age = x;
	}

	void setheight(int x) {
		height = x;
	}

	void print() {
		std::cout << "(" << age << "," << height << ")" << std::endl;
	}
};

int main()
{
	test t;

	t.setage(20);
	t.setheight(170);

	t.print();
}
