#include <memory>
int main() {
    std::unique_ptr<int> ptr = std::make_unique<int>(10);
    // حافظه به صورت خودکار آزاد می‌شود
}