Write a class named Adder that enables theaddition of up to and including 20-dig
ID: 3618582 • Letter: W
Question
Write a class named Adder that enables theaddition of up to and including 20-digit integers. (The“20” value might be a named constant so your classcould work with integers exceeding this number of digits.)
The following public methods should be available:
o A method to display an addend. (I’ll allowthis, this time!)
Your class should have appropriate private data members and anyother private methods to accomplish the required addition.
Of course, write a "main" program that demonstrates thecorrectness and functionality of your class.