#include <fstream>
using namespace std;
int main(int argc, char **args){
    fstream out;
    out.open("OUT1.txt", ios::out);
    out << "Hello World" << endl;
    out.close();
    return 0;
}

