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
{
    



    
    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("VLSZ");
            xyz.println("FONZ");
            xyz.println("BLRG");
            xyz.println("BDAY");
            xyz.println("SZVL");
            
        }
       xyz.close();
    }
       
    
}

