static void Main (string [ ] args)
{
int a = 8;
int b = 2;
a%=b;
Console.WriteLine(a);
Console.ReadKey();
}