public class DemoInput
{
	public static void main(String[] args) throws Exception
	{
		char init1, init2, init3;
		System.out.println("Please enter a character: ");
		init1 = (char)System.in.read();
		init2 = (char)System.in.read();
		init3 = (char)System.in.read();
		System.out.println("You entered " + init1 + init2 + init3);
	}
}