#include <iostream>

using namespace std;

struct X {
    int v;
};

int main()
{
    X X;
    X.v = 7;
    cout << "X.v:" << X.v << endl;
    return 0;
}
