int main() {
	Cat Frisky;
	cout << "Frisky age: " << Frisky.getAge() << endl;
	cout << "Setting Frisky to 6..." << endl;
	Frisky.setAge(6);
	cout << "Creating Boots from Frisky" << endl;
	Cat Boots(Frisky);
	cout << "Frisky age: " << Frisky.getAge() << endl;
	cout << "Boots age: " << Boots.getAge() << endl;
	cout << "Setting Frisky to 7..." << endl;
	Frisky.setAge(7);
	cout << "Frisky age: " << Frisky.getAge() << endl;
	cout << "Boots age: " << Boots.getAge() << endl;
	return 0;
}