#include <iostream>   
#include <string>

using namespace std;

char ch;

int main()
{

  ch = 'A';
  cout << ch << endl;

  ch = 'B';
  cout << "The new value for ch is: " << ch << endl;

  cout << "This is what quote marks look like \" " << endl;

  return 0;
}
