#include <iostream>  
#include <fstream>  
#include <string>

using namespace std;

int main() {
    
    ifstream fp_in; 
    ofstream fp_out;
    fp_in.open("DATA5.txt");    
    fp_out.open("OUT5.txt");
    
    
    for (int i = 0; i < 5; i++) {
        fp_out << 0 << endl;
    }
    
    fp_in.close();
    fp_out.close(); 
    
}

