#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream read; //열기
read.open("093.txt", ifstream::in); //파일이름, ifstream::in은 열기모드란의미.
char line = read.get(); //한문자읽기.
while (read.eof() == false) // eof는 end of file이란의미. 다읽을때까지 반복.
{
cout << line;
line = read.get();
}
cout << endl;
read.close(); //닫기
return 0;
}