//In C++, the largest int value is 2147483647. Write a program that inputs two positive integers
//of at most 100 digits and outputs the sum of the numbers. Your program must, at least, contain
//a function to read and store a number into an arrray. (Hint: read numbers as strings and store
//the digits of the number in the reverse order).
//Please include sufficient test results in your solution.
//**********************************************************************************************
#include <>
#include <>
#include <>
#include <>
#define asize 100
using namespace std;
void inputInteger(char s[], int &len) {//Implement function to read an integer from the keyboard