import java.util.Scanner; import java.util.Stack; public class Solution { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); int n = scan.nextInt(); int q = scan.nextInt(); scan.nextLine(); String s = scan.nextLine(); for(int iterator=0;iterator stack = new Stack<>(); String str = s; if(s.isEmpty()){ return false; } while(!str.isEmpty()){ stack.push(str.charAt(0)); str = str.substring(1); } int i=0; while(!stack.isEmpty()){ if(stack.pop()!=s.charAt(i)){ return false; } i++; } return true; } public static char shift(char c){ switch(c){ case 'a' : return 'b'; case 'b' : return 'c'; case 'c' : return 'd'; case 'd' : return 'e'; case 'e' : return 'f'; case 'f' : return 'g'; case 'g' : return 'h'; case 'h' : return 'i'; case 'i' : return 'j'; case 'j' : return 'k'; case 'k' : return 'l'; case 'l' : return 'm'; case 'm' : return 'n'; case 'n' : return 'o'; case 'o' : return 'p'; case 'p' : return 'q'; case 'q' : return 'r'; case 'r' : return 's'; case 's' : return 't'; case 't' : return 'u'; case 'u' : return 'v'; case 'v' : return 'w'; case 'w' : return 'x'; case 'x' : return 'y'; case 'y' : return 'z'; case 'z' : return 'a'; default : return ' '; } } }