12345
time_t secs=time(0); tm *t=localtime(&secs); printf("%04d-%02d-%02d %02d:%02d:%02d\n", t->tm_year+1900, t->tm_mon+1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
ofstream fout(date.c_str());
cout<<setw(2)<<setfill('0');