#include <iostream>
#include <mutex>

using namespace std;

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