using System;
public class Program
{
public static void Main()
for (int j = 10;j >=1;j--)
if (j==6)
break;
}
Console.WriteLine("Value of j : {0}",j);