#include <limits.h>

int const int_is_32_bit = sizeof(int) == 4 && CHAR_BIT == 8 ? 1 : 0;

int main(void) {
	// your code goes here
	return 0;
}
