Darkone, just a note, you can use "using namespace std;" instead of "std::bla" like his:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string quote;
getline(cin, quote );
if(quote=="The one and the only one...darkone.")
cout<<"\a";
}