#include <iostream>
using namespace std;
struct X { char member; };
int main() {
	cout << sizeof(X::member);
	return 0;
}