#include <iostream>
using namespace std;

int main() 
{
	int i = 0, x = 0;
    while (x < 30) {
        x++;
        if (13 < (i=i+1)) break;
        cout << i << endl;
    }
	return 0;
}