In C++ write a program;

Your goal is to create a structure to store information about a movie.

Your program should have the following:

-The name of the program should be Assignment8.

-3 comment lines (description of the program, author, and date)

-Write a program that uses a structure named MovieData to store the following information about a movie: (3 points)

Title, Director, Year released, Running time (in minutes)

The program should create 2 MovieData variables, store values in their members, and pass each one, in turn, to a function that displays the information about the movie in a clearly formatted manner.