fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. typedef long long ll;
  6.  
  7. int main ()
  8. {
  9. string s;
  10. cin >> s;
  11. int i, j, k, l, x, y;
  12. int sz = s.size();
  13. s[0]=s[0]--;
  14. if (s[0]=='0')
  15. {
  16. cout << 1;
  17. for (i=1; i<sz; i++)
  18. {
  19. cout << s[i];
  20. }
  21. for (i=sz-1; i>=1; i--)
  22. {
  23. cout << s[i];
  24. }
  25. cout << 1;
  26. }
  27. else
  28. {
  29. for (i=0; i<sz; i++)
  30. {
  31. cout << s[i];
  32. }
  33. for (i=sz-1; i>=0; i--)
  34. {
  35. cout << s[i];
  36. }
  37. }
  38. return 0;
  39. }
Success #stdin #stdout 0s 3464KB
stdin
20
stdout
2002