Write a class named ArithmeticOperations containing two properties: an Int property x and an Int property y.
Add the following member functions to the class:
addition– addsxtoy;subtraction– subtractsyfromx;multiplication– multipliesxbyy;division– dividesxbyy.
Each function returns an integer result of the operation.
You can be assured that there will be no zero division. Additionally, all operations should be performed with integer operands only.