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