class Main {
	public static void main(String[] args) {
		new Object() {
			public void show() {
				System.out.println("test");
			}
		}.show();
	}
}