#include <iostream>

int main()
{
	for ( unsigned day = 1, candy = 6; day < 31; ++day, candy += 5 )
    	std::cout << day << ' ' << candy << '\n' ;
}