You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

36 lines
683 B
C++

#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int string_sum(const string& str) {
int res = 0;
int x;
int n = str.size();
int i = 0;
while (i < n) {
switch (str[i]) {
case '[':
case ',' :
sscanf((str.c_str()) + i + 1, "%d", &x);
res += x;
break;
case ']' :
return res;
case ' ':
break;
default:
break;
}
++i;
}
return -1;
}
int main() {
string meow;
getline(cin, meow);
cout << string_sum(meow) << endl;
}