// Echo input back in lowercase 	
	
import java.io.*;	
	
public class LowerCaseDisplay {	
	public static void main(String[] args) throws IOException {	
		// prepare for conversion 	
		BufferedReader stdin = new BufferedReader(	
			new InputStreamReader(System.in));	
	
		System.out.println("Enter input to be converted:");	
	
		String converted = "";	
	
		// get the first input 	
		String currentLine = stdin.readLine();	
	
		// process lines one-by-one 	
		while (currentLine != null) {	
			// process current line 	
			String currentConversion = currentLine.toLowerCase();	
			converted += (currentConversion + "\n");	
	
			// prepare for next iteration -- get next input line 	
			currentLine = stdin.readLine();	
		}	
	
		// display result 	
		System.out.println("\nThe conversion is:\n" + converted);	
	}	
}	
	
