using System;
using System.Text;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
StringBuilder sb = new StringBuilder();
sb.Append("c#");
sb.AppendLine();
sb.Append("java").AppendLine();
sb.Append("c++");
sb.Append(" programming", 0, 12);
Console.WriteLine(sb);
}
}
}
/*
run:
c#
java
c++ programming
*/