#include <iostream>
using namespace std;
class Cat{
public:
	string name="Buch";
	int age=2;
	string breed="house";	  void sleep(){
  cout<<"Я сплю, бо я кіт";}
  void each(){
  cout<<"Де їжа?";}
  void jump(){
  cout<<"Це не я";}
};
int main() {
	return 0;}

