int 型の変数 x、y にそれぞれ数値を入力し、x と y の和、差(x-y)、積、商と余り (x÷y)、を表示するプログラムを作成しなさい。
static void Main(string[] args)
{
int x = int.Parse(Console.ReadLine());
int y = int.Parse(Console.ReadLine());
Console.WriteLine("和 " + ( x + y ));
Console.WriteLine("差 " + ( x - y ));
Console.WriteLine("積 " + ( x * y ));
Console.WriteLine("商 " + ( x / y ));
Console.WriteLine("余り " + ( x % y ));
}