import java.io.*;
import hsa.Console;
import java.util.StringTokenizer;


// The "Rhombus" class.
public class TEMPLATE
{
    public static void main (String[] args) throws IOException
    {

	// Open up the input and output file for IO purpose
	FileReader inFile = new FileReader ("DATA5.txt");
	FileWriter outFile = new FileWriter ("OUT5.txt");

	// Link the input and output file for
	BufferedReader in = new BufferedReader (inFile);
	BufferedWriter out = new BufferedWriter (outFile);

	// String e;

	// Keep reading as long as not end of file (eof)
	for (int count = 0 ; count < 5 ; count++)
	{
	    out.write ("5");
	    out.newLine ();

	    out.flush ();
	}
	out.close ();
    }
}


// main method
// End of Class



