c++ clip values

#include <iostream>
#include <algorithm>

int main() {
    // Step 1: Define the value and the desired range
    int value = 15;
    int lower_limit = 5;
    int upper_limit = 10;

    // Step 2: Use the std::clamp function to restrict the value within the specified range
    int clipped_value = std::clamp(value, lower_limit, upper_limit);

    // Step 3: Display the original and clipped values
    std::cout << "Original value: " << value << std::endl;
    std::cout << "Clipped value: " << clipped_value << std::endl;

    return 0;
}