class Program
{
static void Main()
{
string text = "Soviet Compaign go brrrrrr";
char[] charArray = text.ToCharArray();
int i = 1;
foreach (char c in charArray)
{
Console.WriteLine($"The {c} in {text} is the {i}. letter");
i++;
}
Console.ReadKey();
}
}