#include<iostream>
#include<fstream>
using namespace std;
void main()
{ short speech[2];
ifstream inobj("yuyin.dat",ios::beg);
ofstream outdate1("result.dat");
while(inobj.eof())
{
inobj.read((char*)speech,sizeof(short));
outdate1.write((char*)speech,sizeof(short));
cout<<"1"<<endl;
}
inobj.close();
outdate1.close();
}