#include <iostream>
struct S {
    unsigned long b1:63;
    unsigned int :0;
    char d;
};
int main()
{
    std::cout << sizeof(S) << '\n';
}