Print the following output: Success is when your "signature" becomes "autograph"
#include <iostream>
using namespace std;
int main() {
cout << "Success is when your \"signature\" becomes \"autograph\"";
return 0;
}
// Key learning: "\"" - this is called an escape character.