using System;
public class Program
{
public static void Main()
int myInt = 20;
myInt+=200;
myInt=+200;
myInt++;
myInt--;
Console.WriteLine(myInt);
}