fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4. using namespace std;
  5.  
  6. int main() {
  7. int a;
  8. string s;
  9. while(cin >> a) {
  10. cin >> s;
  11. cout << stoi(s, nullptr, a) << endl;
  12. }
  13. }
Success #stdin #stdout 0s 3472KB
stdin
2 1111
16  F
16 F
stdout
15
15
15