#include
#include
using namespace std; int main() { string myString = "Hello"; myString[0] = 'J'; cout << myString; return 0; }
Jello