using System;
public class Program
{
public static void Main()
int a = 5;
int b= 10;
a = a+b;
b = a-b;
a = a-b;
Console.WriteLine("The value of 1st variable: "+a);
Console.WriteLine("The value of 2nd variable: "+b);
}