#include <iostream>
#include <string>
using namespace std;
void _tmain(int argc, TCHAR *argv[])
{
int line = __LINE__;
string filename = __FILE__;
cout<<"the line is:"<<line<<endl;
cout<<"the filename is :"<<filename<<endl;
system("pause");
}