/* Read File program */

#include <iostream.h>
#include <fstream.h>
#include <lvpstring.h>

using namespace std;	// October 5, 2001

int main()
{
	ifstream InFile("ask-not.txt");
	if (InFile.fail()) {
		cout << "File could not be opened";
		return(0);
	}
	else {
		lvpstring S;
		while (getline(InFile, S))
			cout << ">" << S << endl;
		cout << "Done" << endl;
		return(0);
	}
}
