public class Product{ double a,b; Prodcut(double a, double b){ this.a = a; this.b = b; } public double calc(){ return this.a * this.b; } }