#include <bits/stdc++.h>
using namespace std;
int main()
{
char s[5];
int x=0,y=0,n=0;
while((s[n]=getchar())!=‘+‘)
{
x=x*10+s[n]-‘0‘;
n++;
}
while((s[n]=getchar())!=‘\n‘)
{
y=y*10+s[n]-‘0‘;
n++;
}
cout<<x+y;
return 0;
}
原文地址:http://blog.51cto.com/1443208/2113112
时间: 2024-11-13 09:42:15