/* 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
{
	static char d;
	public static void main (String[] args) throws java.lang.Exception
	{
		
		char c = '\u0000';
		System.out.println("The char is: " + c + " not a");
		System.out.println("The char is: " + Ideone.d + " not a");
	}
}