using System;
public class Program
{
public static void Main()
int a = 5;
int b = 2;
b = a;
a -=3 ;
Console.WriteLine(a);
Console.WriteLine(b);
}