using System;
public class Program
{
public static void Main()
int a = 1;
int b = 2;
Console.WriteLine(a++ + a);
Console.WriteLine(b + b * b++);
}