#include <iostream>
using namespace std;

class Gatito {
public:
    string nombre;
    string color;
    Gatito(string x, string h) : nombre(x), color(h) {} // Constructor
    void Maullar() {
        cout << "¡Miau! Soy " << nombre << " de color " << color << endl;
    }
};

int main() {
    Gatito miGatito("Negrita", "Negro");
    miGatito.Maullar();
    return 0;
}