using System;
public class Program
{
public static void Main()
string myName = ("Ishneet");
int wordLength = myName.Length;
Console.WriteLine (myName);
string mySentence = ("we are learning about c#");
int wordlength = mySentence.Length;
Console.WriteLine (mySentence);
}