import java.io.IOException;

public class Main
{
	public static void main(String[] args)
	{
	// TODO code application logic here
	}
	record Abc(int xyz)
	{
		Abc
		{
			throw new IOException();
		}
	}
}