fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string s;
  8. cin >> s;
  9. if (s.substr(s.size() - 2, 2) == "00")
  10. {
  11. cout << s.substr(0, s.size() - 2);
  12. }
  13. else
  14. {
  15. for (int i = s.size() - 3; i >= 0; --i)
  16. {
  17. if (int(s.at(i)) - 48 + 1 == 10)
  18. {
  19. s.at(i) = '0';
  20. if (i == 0)
  21. {
  22. cout << "1";
  23. }
  24. continue;
  25. }
  26. else
  27. {
  28. s.at(i)++;
  29. break;
  30. }
  31. }
  32. cout << s.substr(0, s.size() - 2);
  33. }
  34. return 0;
  35. }
Success #stdin #stdout 0s 4520KB
stdin
12345600
stdout
123456