Modify the following program so it prints two blank lines between each line of text.
#include <iostream>
using namespace std;
int main()
{
cout << "Two mandolins like creatures in the";
cout << "dark";
cout << "Creating the agony of ecstasy.";
cout << " - George Barker";
return 0;
}