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 Pro55
{
    



    
    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")));
        Random gen = new Random();
        for (int x=0;x<5;x++)
        {
                      
            xyz.println((gen.nextInt(10)+10)+"");
            
        }
       xyz.close();
    }
       
    
}

