#include <iostream>
using namespace std;

    struct Foo {
        unsigned a : 16, b : 16;
    };

int main() {
	struct Foo bar = {13, 42};
	
	cout << bar.a << ' ' << bar.b;
}