using System;
public class Program
{
public static void Main()
int steps = 0;
steps += 2;
Console.WriteLine(steps);
steps--;
}