Code for USACO practice problems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
359 B

3 years ago
#include <iostream>
#include <string.h>
using namespace std;
3 years ago
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++) {
string s;
cin >> s;
int length = s.length();
char first = s.front();
char last = s.back();
if (length > 10) {
cout << first << length << last << endl;
} else {
cout << s << endl;
}
}
}