1
2#include <fstream>
3int main(void) {
4        std::ofstream pippo("pluto");
5        return 0;
6};
7
8