( --> )

Example Specificaiton (int Operators)

Form
  1. <int> + <int> --> <int>
  2. <int> - <int> --> <int>
  3. <int> * <int> --> <int>
  4. <int> / <int> --> <int>
Meaning
  1. Returns the sum of the two inputs
  2. Returns the value obtained by subtracting the second input from the first.
  3. Returns the product of the two inputs
  4. Returns the quotient of the division of the first input by the second, without the remainder