class Sides { double a, b, c; public Sides(double a, double b, double c) { this.a = a; this.b = b; this.c = c; } }