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

enum { STATE_IDLE = 0, STATE_WORKING, STATE_PANIC, TOTAL_STATES };
int32_t const g_stress_levels[TOTAL_STATES] = {
        [STATE_IDLE] = 10,
        [STATE_WORKING] = 40,
        [STATE_PANIC] = 90
};

int main(void) {
	printf("%d\n", g_stress_levels[STATE_IDLE]);
	printf("%d\n", g_stress_levels[STATE_WORKING]);
	printf("%d\n", g_stress_levels[STATE_PANIC]);
	return 0;
}
