int isPlaindrome(string S) { // Your code goes here int flag =0; int l=0; int h=S.length()-1; while(h>l){ if(S[l++]!=S[h--]){ return 0; } } return 1; }