#include <stdio.h>
#include <arpa/inet.h>

int main(void) {
    printf("%04X", htons(0xFF00));
	return 0;
}
