// File: exercise3.cpp
// Advanced exercise: Define a class and use it

#include <iostream>
using namespace std;

// Define a simple class representing a Rectangle

int main() {
    // Create an object of Rectangle class
    
    // Print the area
    
    return 0;
}