#include<iostream>
#include<sstream>
using namespace std;
int main()
{
string s;
int i;
while(getline(cin,s))
{
stringstream ss(s),str;
string t;
int sum=0,z;
bool x=1;
while(ss>>t)
{
for(i=0;i<t.length();i++)
if(t[i]<48||t[i]>57)
{
x=0;
break;
}
if(x)
{
str.clear();
str<<t;
str>>z;
sum+=z;
}
}
cout<<sum<<endl;
}
//system("pause");
return 0;
}
只要有一字串有非數字
後面的通通加不到