#include <stdio.h>
#include <stdint.h>

#define CLOCK_TIME(hr, min)   (int32_t)( ( (hr) * 60 + (int32_t)(min##e0)) * 0x10000 / (24 * 60))


int main(void) {
	
	printf("%d\n", CLOCK_TIME(6, 08));
	return 0;
}
