#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
 
int main(void) {
	bool b1;
	char b2;
	uint16_t x1 = 0xFF00;
 
	b1 = x1;
	b2 = x1;
 
	printf(b1 ? "true\n" : "false\n");
	printf(b2 ? "true\n" : "false\n");
	return 0;
}