import tools.*;

class ProdPrecio extends Program {
  void run() {
    TextReader lect= new TextReader("productos.txt");
    TextWriter escr= new TextWriter("productos-precios.txt");
    String prod= lect.readLine();
    while ( ! lect.eofReached() ) {
      print("Precio de "+prod+" ? ");
      int precio= readInt();
      escr.println(prod+" "+precio); // (*)
      prod= lect.readLine();
    }
    lect.close();
    escr.close();
  }
}
