#include <fstream>

using namespace std;

int main()
{
    ofstream fout("OUT1.txt");
    fout << "Hello World" << endl;
}

