A. #include<bits/stdc++.h> using namespace std; #define ll long long int ton[26]; signed main (){ std::ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n,m; cin>>n>>m; string s; cin>>s; for(int i=0;i<26;i++) ton[i] = i; for(int i=1;i<=m;i++) { char x,y; c...