123456789101112131415161718192021
#include <windows.h> #include <iostream> using namespace std; void print(string i) { cout << i << '\n'; } void quit(int i) { cin.ignore(i,'\n'); cin.get(); } void run(char* i) { ShellExecute(GetDesktopWindow(), "open", i, NULL, NULL, SW_SHOWNORMAL); }