#include <iostream>

using namespace std;

struct Cow{
    int legs;
    double weight;
};

int main(){

    Cow herd[8] ={{4,900},{3,800}};

    cout << herd[0].legs << endl;

    cout << "my cow is this big: " << sizeof(Cow) << endl;

    return 0;
}

