UVA 12403 - Save Setu Shipu Ahamed - 01 Sep 2020 Problem PDFSolution:#include #include int main () { int t,s=0,d=0; char a [100]; scanf ("%d", &t); while ( t-- ) { scanf ("%s", a); if (strcmp (a, "donate")==0) { scanf ("%d", &d); s += d; } else printf ("%d\n", s); } return 0; } https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/12403/12403.cpp