using System;
public class Program
{
public static void Main()
for (int i=10, x=2; i>=1; i=i-2, x=x+1)
Console.WriteLine("i={0},x={1}",i,x);
}