import java.io.IOException;
class AirPlane {
public AirPlane() throws IOException, RuntimeException {
System.out.println("AirPlane");
}
}
class AirJet extends AirPlane { } // line 7
public class Tester {
public static void main(String args[]) throws IOException { // line 10
new AirPlane(); // line 11
}
}