#include "stdafx.h"
#include
using namespace std;
ifstream& openfile(ifstream &in,const string &filename){
in.close();
in.clear();
in.open(filename.c_str());
return in;
}
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}