fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4.  
  5. ll pot10[11];
  6.  
  7. int main() {
  8. ios_base::sync_with_stdio(0);
  9. cin.tie(0);
  10. cout.tie(0);
  11. string s;
  12. cin >> s;
  13. int ile = 0;
  14. for(auto u : s){
  15. if(u == '?'){
  16. ile++;
  17. }
  18. }
  19. cout << ile * ile * ile * ile << "\n";
  20. return 0;
  21. }
Success #stdin #stdout 0s 5284KB
stdin
??????????
stdout
10000