#include <iostream>
using std::cout;
using std::endl;
class Cat
{
public:
int GetAge();
void SetAge(int age);
void Meow();
private:
int itsAge;
};
int Cat::GetAge()
{
return itsAge;
}
void Cat::SetAge(int age)
{
itsAge = age;
}
void Cat::Meow()
{
cout <<"\nMEOWWWW\n";
}
int mian()
{
Cat Frisky;
Frisky.SetAge(3);
Frisky.Meow();
cout <<"Frisky is a Cat who is "<<Frisky.GetAge()<<"years old"<<endl;
Frisky.Meow();
return 0;
}