using System;
public class Movie
{
// (1) Create int for price (make it public)
// (2) Create string for movie title (make it private)
// Constructor
public Movie()
}
public class Program
public static void Main()
//Create object
Movie movie1 = new Movie();
// (3) Try access to the price: using Console.WriteLine(xxxx);
// (4) Try access to the movie title: using Console.WriteLine(xxxx);