using System;
public class Movie
{
// (1) Create int for price (make it public)
public int price;
// (2) Create string for movie title (make it private)
public string movie_title;
// 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);