class CircleDriver{ public static void main(String [] args){ Circle patio = new Circle(7); double area = patio.area(); System.out.println("The area of the patio is " + area); System.out.println("The perimeter of the patio is " + patio.circumference()); System.out.println(); Circle room = new Circle(10); System.out.println("The area of the room is " + room.area()); Circle cir = new Circle(7); if(patio == cir){ System.out.println("The same "); }else{ System.out.println("Not the same "); } } }