fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int md(int n)
  5. {
  6. if (n < 10) return n;
  7. int s = 0;
  8. while (n != 0)
  9. {
  10. s = max(s, n%10);
  11. n /= 10;
  12. }
  13. return s;
  14. }
  15.  
  16. int main()
  17. {
  18. int n;
  19. cin >> n;
  20. int res = 0;
  21. while (n != 0)
  22. {
  23. n = n - md(n);
  24. res++;
  25. }
  26. cout << res;
  27. }
  28.  
Success #stdin #stdout 0.01s 5292KB
stdin
27
stdout
5