#include <iostream> #include <unordered_map> using namespace std; int main() { int n,m; string str; cin>>n>>m>>str; int l=0; int r=1; int mxlen = 1; unordered_map<char, int> mp; mp[str[0]]=1; char other; while(r!=str.lengt...