public static void Main()
Console.WriteLine("Please input the width of a picture frame");
width = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please input the length of a picture frame");
height = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("It would appear your picture is a landscape since the width, {0} is longer than the height, {1}",width,height);
Console.WriteLine("It would appear your picture is a portrait since the height, {0} is longer than the width, {1}",height, width);