#include #include int main() { for (auto x : { -2, 0, 1, 255, 256 }) std::cout << std::clamp(x, 0, 255) << '\n'; }