import tools.*;

class Prod extends Program {
  void run() {
    TextWriter escr= new TextWriter("productos.txt");
    print("Ingrese el nombre de un producto: ");
    String prod= readLine();
    while (compare(prod,"fin")!=0) {
      escr.println(prod);
      print("Ingrese el nombre de un producto: ");
      prod= readLine();
    }
    escr.close();
  }
}

