import java.util.Arrays;
import java.util.List;

class BeautifulGirlShouldNotDefecate extends Exception {}

class Main {
  public static void main(String[] args) throws Exception {
    List<Human> humans = Arrays.asList(new Human(), new BeautifulGirl(), new Human());
    try {
      for (Human human : humans) {
        human.eat();      
        human.defecate();      
      }
    } catch (Exception e) {
      System.out.println("美少女はうんこしません!");
    }
  }
}

class Human {
    public void eat() {
      System.out.println("ぱくぱく");
    }
    public void defecate() throws BeautifulGirlShouldNotDefecate {
      System.out.println("ぶりぶりー");
    }
}

class BeautifulGirl extends Human {
  @Override
    public final void defecate() throws BeautifulGirlShouldNotDefecate {
      throw new BeautifulGirlShouldNotDefecate();
    }
}
/* end */
