#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; int n = s.size(); set st; for (int bit = 0; bit < (1 << n); bit++) { string t = s; int x = 0, y = 0; for (int i = 0; i < n; i++) { if ((bit >> i) & 1) { if (t[i] == 'l') { t[i] = '1'; x++; } else if (t[i] == 'o') { t[i] = '0'; x++; } else if (t[i] == 'a') { t[i] = '@'; y++; } else if (t[i] == 's') { t[i] = '$'; y++; } } } if (x > 0 && y > 0 && x + y < n) { st.insert(t); } } cout << st.size() << endl; }