#include <iostream>
using namespace std;

class Test{
public:
	Test(int x){
		a = 10;
		// b = x;
	}
private:
	int a;
	// int b;
};

int main() {
	// your code goes here
	Test a(20);
	cout << sizeof(a) <<endl;
	return 0;
}