// C# syntax
// Login and Fork to a new fiddle.
// Add code lines under each direction.
// Hit Save.
// Copy your fiddle link and submit it into the Blackboard assignment.
using System;
public class Program
{
public static void Main()
Console.WriteLine("ASP.Net 1-1");
// Create a string variable called strTitle.
string strTitle;
// Assign the Book Title to your favorite book title.
strTitle = "Go Dog Go";
// Create integer variable call intNumberOfPages and Assign the NumberOfPages to the number of pages in your favorite book.
int intNumberOfPages = 20;
// Output the title and number of pages on 1 line.
// Example : Lords of the Rings: The Return of the King (544 pages)
Console.WriteLine(strTitle + " (" + intNumberOfPages + " pages)");
}