abstract class food {
	double 	calary_per_kg;
	abstract void cook();
}


class Test_P {
	public static void main(String[] args) {
	}
}
