#include
using namespace std;
int main()
{
const int arrSize = 3;
string town[arrSize];
int minValue = 0;
int maxValue = 0;
for (int i = 0; i < arrSize; i++)
{
cout
cin >> town[i];
if (town[i].length() < town[minValue].length())
minValue = i;
if (town[i].length() > town[maxValue].length())
maxValue = i;
}
cout
cout
return 0;
}