using System;
public class Program
{
public static void Main()
// Arithmetic Operator by Ian Exequiel B.Santuyo
int z = 10;
int x = 5;
int c;
c = z + x;
Console.WriteLine("The Answer is {0}", c);
c = x - z;
c = z * z;
c = x / x;
c = z % x;
}