#include <stdio.h>
#include <stdbool.h>
int main(void) {
	bool b = true;
	printf("size of b: %zu\n", sizeof(b));
	return 0;
}
