| 13 | return "yes"; |
| 14 | } |
| 15 | int main(){ |
| 16 | /*string s; |
| 17 | s="siddhu"; |
| 18 | s[0]='S'; |
| 19 | cout<<s<<endl; |
| 20 | cout<<s.size()<<endl;*/ |
| 21 | /*int t; |
| 22 | cin>>t; |
| 23 | cin.ignore(); |
| 24 | while(t--){ |
| 25 | string s; |
| 26 | getline(cin,s); |
| 27 | cout<<s<<endl; |
| 28 | }*/ |
| 29 | string s; |
| 30 | cin>>s; |
| 31 | cout<<palindrome(s); |
| 32 | |
| 33 | |
| 34 | /* string s_rev; |
| 35 | |
| 36 | for (int i = s.size()-1; i >=0; --i) |
| 37 | |
| 38 | { |
| 39 | s_rev.push_back(s[i]); |
| 40 | } |
| 41 | cout<<s_rev<<endl;*/ |
| 42 | // ********PALINDROME********** |
| 43 | /*if(s==s_rev){ |
| 44 | cout<<"YES"<<endl; |
| 45 | } |
| 46 | else |
| 47 | cout<<"NO"<<endl;*/ |
| 48 | return 0; |
| 49 | } |
nothing calls this directly
no test coverage detected