using System;
public class BasicIO
{
public static void Main()
//string array containing lines
string[] lines = { "This is the first line.",
"This is the second line." };
// Output the lines using the default newline sequence.
Console.WriteLine("With the default new line characters:");
//add a line break
Console.WriteLine();
//loop through each line using foreach loop
foreach (string line in lines)
Console.WriteLine(line);
}