#include<iostream>
using namespace std;
#include<string>
class person{
// int m_a;
static int m_b;
//void func();
//static void func2();
};
int person::m_b=0;
void test1(){
person p;
cout<<sizeof(p)<<endl;
}
int main(){
test1();
return 0;
}