#include<iostream>
#include<cstdlib>
/* #include<ctime> */

int main()
{
	for (int i=0;i<5;i++)
		std::cout<<rand()%20<<std::endl;
}