#include <stdio.h>

int main(void) 
{
	char str[128];
	sprintf (str, "Max:%d,Min:%d", 0x05, 0x00);
	printf("%s\n",str);
	return 0;
}
