using System;
public class Program
{
public static void Main()
int x=5;
x>>=2;
int y=3;
y<<=2;
Console.WriteLine(x);
Console.WriteLine(y);
}