import java.io.*;

public class Solution4
//copyright
{
    public static void main (String[] args) throws IOException
    {
	PrintWriter output = new PrintWriter (new FileWriter ("OUT4.txt"));

	output.println ((int) (Math.random () * 11) + 5);
	output.println ((int) (Math.random () * 11) + 5);
	output.println ((int) (Math.random () * 11) + 5);
	output.println ((int) (Math.random () * 11) + 5);
	output.println ((int) (Math.random () * 11) + 5);
	output.close ();
    }
}

