#include <stdio.h>

int main(void) {
	// your code goes here
	size_t index = 2;
	printf("%u\n", (index + 1) % 3);
	printf("%u\n", (index + 2) % 3);
	return 0;
}
