#include <iostream>
#include <string>

using namespace std;

class MyObject
{
public:
    wstring name;
    wstring address;
    wstring telephone;
    wstring name2;
    wstring address2;
    wstring telephone2;   
};

int main()
{
    cout << sizeof(MyObject) << endl;
    return 0;
}