using System;
public class Novel
{
public string title;
public string author;
public string character;
public Novel(string aTitle,string aAuthor,string aCharacter)
title = aTitle;
author = aAuthor;
character = aCharacter;
}
public static void Main()
Novel Shelf = new Novel("Obssesion" , "Susan Lewis" , "Corrie");
Console.WriteLine( Shelf.title + " " +Shelf.author+ " " + Shelf.character );