fork(1) download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define LL unsigned long long int
  4.  
  5. int main()
  6. {
  7. string s;
  8. cin >> s;
  9. int a;
  10. for(int i=0;i<s.size();i++)
  11. {
  12. a += s[i] - '0';
  13. }
  14.  
  15. string t = to_string (a);
  16. string temp = t;
  17.  
  18. reverse (temp.begin() , temp.end());
  19.  
  20. if(temp == t )
  21. {
  22. cout<< "palindrome" << endl;
  23. }
  24. else
  25. {
  26. cout << "Not Palindrome" << endl;
  27.  
  28. }
  29. }
  30.  
Success #stdin #stdout 0.01s 5288KB
stdin
11
stdout
Not Palindrome