import stdio;
int
main(int argc, char **argv)
{
unsigned short i = -1;
i <<= 1;
printf("%hu", i);
i <<= 13;
printf(";%hu", i);
puts("");
return 0;
}