#include <stdio.h>
#include <stdint.h>
#define NUM_TABS (24)

int main(void) {
	// your code goes here
	uint8_t indexTabIndex = 11;
	int8_t tabs_from_index_to_eclipse = 5;
	for (uint8_t currentTabIndex = 0; currentTabIndex < 24; currentTabIndex++)
	{
		const uint8_t tabs_from_start_of_eclipse = (indexTabIndex + NUM_TABS + tabs_from_index_to_eclipse + NUM_TABS - currentTabIndex) % 6;
		printf("Tab %u, mod6_delta_from_eclipse=%u\n", currentTabIndex, tabs_from_start_of_eclipse);
	}



	return 0;
}
