12345678910
#include <iostream> #include <Windows.h> using namespace std; int main() { char response; PlaySound(TEXT("PacmanDies.wav"), NULL, SND_FILENAME | SND_ASYNC); cin >> response; return 0; }