import java.util.*;
import java.io.*;
/**
 * Write a description of class Problem1 here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */

 
public class Pro5
{

    static boolean[][] grid = new boolean[20][20];
    static int[][] all = new int[21][5];
     static int color=1;       

    

    
    public static void main (String args[]) throws IOException
    {
        
        Scanner kb = new Scanner( new File("DATA5.txt"));
        PrintWriter xyz = new PrintWriter (new BufferedWriter (new FileWriter("OUT5.txt")));
        
        for (int x=0;x<5;x++)
        {
            xyz.println("0");
        
        }
        xyz.close();
    }
    
    
}

