create a class that imitates part of functionality of the basic data type int call the class Int. the only data in this class is an int variable. Include member function to initialize an Int to 0, to initialize it to an int value to display it and to add tow int value
Write a program that exercises this class by creating tow initialized and one uninitialized Int values adding these tow initialized values and placing the response in the uninitialized values and then displaying this result.