/*
  James Little
  Sat 17 March, Exercise 4, COSC 241
  Program reads a stream of texts and counts the 
  frequency of the words contained.
*/

package jlittle_ex4;
import basicIO.*;

public class Read {

    public void inData(){
	String text=In.readLines();
	Out.println(text);
    }

}// end Read class
