#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint N, M; cin >> N >> M; std::vector v(N); vin(v); lint a=0, b=0, c=0, x, y, z; string s = v[0]; map m; rep(i, N) { rep(j, M+1) { rep(k, 26) { if (j != M && k == v[i][j]-'a') continue; string t = v[i].substr(0, j) + char('a'+k) + v[i].substr(j, M-j); m[t]++; } } } for (auto p : m) { if (p.second == N) c++; } std::cout << c << '\n'; }