// This program demonstrates the string class.
#include <iostream>
#include <string>
using namespace std;

int main ()
{
    string movieTitle;
    
    movieTitle = "Wheels of Fury";
    cout << "My favourite movie is " << movieTitle << endl;
    return 0;
}

