/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws IOException
	{
				System.out.println("key--->");
		InputStreamReader s1 = new InputStreamReader(System.in);

		char[] ch = new char[80];
		int i = 0;
		
		/*Begin*/
		while ((ch[i] = (char) s1.read()) != 10)
			i++;

		// for(char a : ch )System.out.print(a);
		
		/*output*/
		for (int j = 0; j < i; j++)
		System.out.print(" \"" + ch[j] + "\" (" + (int) ch[j] + ")");
		System.out.println("不會自動換行");

		
		
		// System.out.println("key--->");
		// BufferedReader S2 = new BufferedReader(s1);
		// System.out.println(S2.readLine());

	}
}