#include using namespace std; using ll = long long; #define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i) #define all(a) (a).begin(), (a).end() int main() { cin.tie(nullptr); string S, T; cin >> S >> T; int a = 0, b = 0, ab = 0, o = 0; rep(i, 0, 2) rep(j, 0, 2) { set s; s.insert(S[i]); s.insert(T[j]); if (s.count('A') && s.count('B')) ab++; else if (s.count('A')) a++; else if (s.count('B')) b++; else o++; } cout << a * 25 << ' '; cout << b * 25 << ' '; cout << ab * 25 << ' '; cout << o * 25 << '\n'; }