class Product { String nm; double prc; public Product(String nm, double prc) { this.nm = nm; this.prc = prc; } }