#include <iostream>
using namespace std;

int main() {
	srand( time(0) );
	// your code goes here
	for (auto i=0; i < 100; i++) cout << rand() % 12 + 1 << endl;
	return 0;
}