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