using System;
public class Program
{
public static void Main()
int x = 0;
x = x + 1;
//0=0 +1 first
//then it will save the answer to the variable on the left.
Console.WriteLine(x);
}