Problem2319--i18n

2319: i18n

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 256 MB

Score : 200200 points

Problem Statement

The word internationalization is sometimes abbreviated to i18n. This comes from the fact that there are 1818 letters between the first i and the last n.
You are given a string ss of length at least 33 consisting of lowercase English letters. Abbreviate ss in the same way.

Constraints

  • 3 ≤ |s| ≤ 1003s100 (|s|s denotes the length of ss.)
  • ss consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:
ss

Output

Print the abbreviation of ss.

Sample Input Copy

internationalization

Sample Output Copy

i18n

Source/Category