using System;
public class Program
{
public static void Main()
int i=3;
int j=i++;
int k=++i;
Console.WriteLine("{0} {1} {2}",i,i++-++i,i);
}