public class TestIntegers
public static void Main()
Console.WriteLine("Enter the value of x: ");
x = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the value of y: ");
y = int.Parse(Console.ReadLine());
Console.WriteLine("The sum of x and y is :" + (x+y));
Console.WriteLine("The dfference of x and y is :" + (x-y));
Console.WriteLine("The product of x and y is :" + (x*y));
Console.WriteLine("The division of x and y is :" + (x/y));
Console.WriteLine("The modulus of x and y is:" + (x%y));