xxxxxxxxxx
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
// You have to scan the next line but get only the first character
char character = input.nextLine().charAt(0); //character
System.out.println("This is the character: " + character);
}
}