public class UserInsurance
{
	public static void main(String[] args) throws Exception			
	{																	//				
		char insurance;													//
		System.out.println("Enter 1 for Life or h for Health");	
		insurance=(char)System.in.read();							
		if(insurance=='1')												//
		insurancel();													//
		else															//
		insuranceh();													//
	}

	public static void insurancel()
	{
		Life life = new Life();
		life.print();
	}

	public static void insuranceh()
	{
		Health health = new Health();
		health.print();
	}
}