#include <bits/stdc++.h>
using namespace std;
#define ll long long
// #define int long long int
#define ld long double
#define all(x) x.begin(), x.end()
#define sortall(x) sort(all(x))
#define endl '\n'
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
template<class T>
void printC (T Collection)
{
for (auto&i:Collection)
cout << i << " \n";
cout << '\n';
}
/*
* Think twice, code once
* Think of different approaches to tackle a problem: write them down.
* Think of different views of the problem. don't look from only one side.
* don't get stuck in one approach.
* common mistakes: - over_flow
* - out_of_bound index
* - infinite loop
* - corner cases
* - duplication counting.
*/
void solve()
{
int r, c, s;
cin >> r >> c >> s;
vector<vector<char>> v(r,vector<char>(c));
for (auto&i:v)
for (auto&j:i)
cin >> j;
vector<vector<vector<int>>> prefix(r+1,vector<vector<int>>(c+1,vector<int>(26)));
for (int i = 0; i < r; ++i)
for (int j = 0; j < c; ++j)
prefix[i+1][j+1][v[i][j]-'A']++;
for (int i = 0; i < r; ++i)
for (int j = 0; j < c; ++j)
for (int k = 0; k < 26; ++k)
prefix[i+1][j+1][k] += prefix[i+1][j][k];
for (int j = 0; j < c; ++j)
for (int i = 0; i < r; ++i)
for (int k = 0; k < 26; ++k)
prefix[i+1][j+1][k] += prefix[i][j+1][k];
pair<int,pair<int,int>> ans = {INT_MAX,{INT_MAX,INT_MAX}};
for (int i = 1; i <= r; ++i)
{
for (int j = 1; j <= c; ++j)
{
int l1 = i, r1 = j, l2 = i+min(r-i, c-j), r2 = j+min(r-i, c-j);
while (l1 <= l2 && r1 <= r2)
{
int mid1 = (l1+l2)>>1;
int mid2 = (r1+r2)>>1;
int cnt = 0;
for (int k = 0; k < 26; ++k)
{
if (prefix[mid1][mid2][k]-prefix[i-1][mid2][k]-prefix[mid1][j-1][k]+prefix[i-1][j-1][k] > 0)
cnt++;
}
if (cnt >= s)
{
if (ans.first > mid1-i+1)
{
ans.first = mid1-i+1;
ans.second.first = i;
ans.second.second = j;
}else if (ans.first == mid1-i+1)
{
if (ans.second.first > i)
{
ans.second.first = i;
ans.second.second = j;
}else if (ans.second.first == i)
{
if (ans.second.second > j)
{
ans.second.second = j;
}
}
}
l2 = mid1 - 1;
r2 = mid2 - 1;
}else
{
l1 = mid1 + 1;
r1 = mid2 + 1;
}
}
}
}
if (ans.first == INT_MAX)
cout << -1;
else
{
cout << ans.first << '\n';
cout << ans.second.first << ' ' << ans.second.second;
}
}
int32_t main()
{
// #ifndef ONLINE_JUDGE
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
// freopen("Errors.txt", "w", stderr);
// #endif
fast
int t = 1;
// cin >> t;
while (t--)
{
solve();
if (t) cout << '\n';
}
cout << '\n';
return 0;
}