#include <stdio.h>
#include <stdbool.h>

int main(void) {
	printf ("%zu = %zu\n", sizeof (bool), sizeof (int));
	return 0;
}
