#include #include using namespace std; int main() { ofstream myfile; myfile.open ("hello.txt"); myfile << "Hello World!"; myfile.close(); }