class Sphere { int radius = 0; Sphere() { radius = 1; } Sphere(int radius) { this.radius = radius; } }