/*
    File: Pause.cpp
    Author: David Villalobos
    Date: 28-02-2021
*/

#include<iostream>

int main(){
	std::cout << "<<                   Program finished                  >>\n";
	std::cout << " The option to pause at the end of the execution is\n";
	std::cout << " activated, if you want to disable it go to settings\n";
	std::cout << " Press any key to close window.";
    std::cin.get();
}
