The normal integer data type can store values between
-32768 to 32767. But suppose it is needed to represent integers which consists of 10 digits or more, then a data structure must be developed for integer arithmetic on extended number system, where extended numbers may consist upto to 10 decimal digits. Write a Program for arithmetic on extended numbers. The program must allow the following operations, +, < and also handle negative numbers.Justify the data structure chosen.