// File: Echo.java
// Author: Mike Wade
// Last Modified: 12/4/1999

import java.io.*;

/**
 * This program asks the user to enter a line of text, which is then
 * repeated on stdout.
 **/
class Echo {

    public static void main(String [] args) throws IOException {
        BufferedReader stdin = new BufferedReader(
            new InputStreamReader(System.in));
        
        System.out.print("Enter a line of text: ");
	String text = stdin.readLine();

	System.out.println(text);
    }
}



        
