#include <iostream>
#include <conio.h>
#include <iomanip>
using namespace std;
const int cmdcolor = system("color 02");
int main() {
setlocale(LC_ALL, "Russian");
char choose;
while (choose == 'n') {
cout << "Продолжить? y/n";
choose = _getch();
}
cout << "Вы успешно закрыли программму";
_getch();
return 0;
}