public class Product { String name; Float price; Product(String name, Float price) { this.name = name; this.price = price; } }