#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc,char * argv [])
{
string str;
int n=0;
ifstream fin(argv[1]);
while(fin)
{
getline(fin,str);
cout << str << endl;
n++;
}
cout << " hang shu :";
cout << n << endl;
}