import java.io.*;
class NotWrking
{
public static void main(String args[]) throws IOException
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the charecter: ");
int a=br.read();
System.out.println("Enter the string: ");
String str=br.readLine();
System.out.println(str);
System.out.println("\n"+(char) a);
}
}