How to pause a c++ program.

#include <iostream>
#include <chrono>
#include <thread>

int main() {
    // Display a message indicating that the program is running
    std::cout << "Program is running..." << std::endl;

    // Pause the program for 5 seconds
    std::chrono::seconds duration(5);
    std::this_thread::sleep_for(duration);

    // Display a message indicating that the pause is over
    std::cout << "Pause is over. Program resumes." << std::endl;

    // Continue with the rest of the program

    return 0;
}