using System;
public class Program
{
public static void Main()
string strB = "Hello Codebuns.com";
// 1 - Method Signature: string Remove (int startIndex);
Console.WriteLine(strB.Remove(5));
Console.WriteLine("\n\n-------------------Separator---------------------\n\n");
// 2 - Method Signature: string Remove (int startIndex, int count);
Console.WriteLine(strB.Remove(5, 9));
}