/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
//package questionfour;

import java.io.FileWriter;
import java.io.IOException;

/**
 *
 * @author peterharquail
 */
public class QuestionFour {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        FileWriter outfile = new FileWriter("OUT4.txt");
        outfile.write("-1\r\n");
        outfile.write("-1\r\n");
        outfile.write("-1\r\n");
        outfile.write("-1\r\n");
        outfile.write("-1\r\n");
        outfile.close();
    }
}

