You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
239 B

#include <bits/stdc++.h>
using namespace std;
int main() {
string ans = "DCBAD";
int s = 0;
string c;
cin >> c;
for (int i = 0; i < 5; i++)
if (c[i] == ans[i]) s += 30;
cout << s << endl;
return 0;
}