import java.util.concurrent.atomic.AtomicLong; public class Box{ public float ancho; public float alto; public float profundidad; public void box(){} public void box(float ancho,float alto,float profundidad){ this.ancho=ancho; this.alto=alto; this.profundidad=profundidad; } public void box(Box a){ this.ancho=a.ancho; this.alto=a.alto; this.profundidad=a.profundidad; } }