using System;
//csc operator_modulus_increment.cs

namespace static_constructor {

class test
{
public static void Main()
{

int n1= 2, n2=9, n3 =14 , n4 = 25;
int x = (n2%n1);
Console.WriteLine("Modulaus % operator the leftover after division 9/2 : " + (n2%n1));
Console.WriteLine("Modulaus -- operator " + (--x));
Console.WriteLine("Modulaus ++ operator " + (++x));
n3 = n4 -n3;
Console.WriteLine("Modulaus - operator " + (n3++));
//
Console.ReadLine();
}

}
}