public static void Main()
string title; Console.WriteLine("Hello! Please start by entering the title of your book:");
title = Console.ReadLine();
string auth; Console.WriteLine("Next, enter the author(s) of your book:");
auth = Console.ReadLine();
string pub; Console.WriteLine("Next, enter the publisher:");
pub = Console.ReadLine();
Console.WriteLine("Finally, enter the ISBN Code:");
ISBNCode = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The book you entered is the following:");
Console.WriteLine("-------------------");
Console.WriteLine("Book Name: " + title);
Console.WriteLine("Author(s): " + auth);
Console.WriteLine("Publisher: " + pub);
Console.WriteLine("ISBN Code: " + "00" + (ISBNCode + 10));
Console.WriteLine("-------------------");