class Ciudad {
 String nombre;
 void p() {
    System.out.println("La ciudad "+nombre);
 }
}