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