using System;
public class Program
{
public static void Main()
var x = 5;
x++;
Console.WriteLine("x={0}", x);
x+=5;
}