#include 
#include 
int main(int argc, const char * argv[]) {        char one[100],two[100],sum[100];        int temp=0,lenth,lenthTwo,i,lenthOfSum;        scanf("%s",one);    getchar();//读取回车字符    scanf("%s",two);        lenthTwo = (int)strlen(two);        if (strlen(two)>strlen(one))//总是让one存储较长的字符串    {        char stringtemp[100];        strcpy(stringtemp, two);        strcpy(two, one);        strcpy(one, stringtemp);    }        lenth = (int)(strlen(one)-strlen(two));        for (i=(int)strlen(two)-1; i>=0 ; i--)    {        sum[i+lenth] = two[i] + one[i+lenth]-'0'+temp;                if (sum[i+lenth]>57) {            sum[i+lenth] = sum[i+lenth] - 10;            temp = 1;        }        else        {            temp = 0;        }    }    for (i=lenth-1; i>=0; i--) {        sum[i] = one[i]+temp;        if (sum[i]>57)        {            sum[i] = sum[i] -10;            temp = 1;        }        else        {            temp = 0;        }    }    lenthOfSum = strlen(sum);    if (temp==1)    {//最高位有可能近位,导致数字长度大于string one的长度,所以需要将所有的数字后移一位,前面添一        for (int i=0; i