PROGRAMMING:Sort 3 strings
Input the names of three students, and output the list of students in ascending order.
###Input format:
Enter the names of three students on three lines. Do not include spaces, newlines, and tabs in the string
###Output format:
Output the result according to "output sample", where 1, 2 and 3 are integers output as is.
###Input example:
```in
zhangdan
lili
wangming
```
###Output example:
```out
1:lili
2:wangming
3:zhangdan
```
answer:If there is no answer, please comment
###Input format:
Enter the names of three students on three lines. Do not include spaces, newlines, and tabs in the string
###Output format:
Output the result according to "output sample", where 1, 2 and 3 are integers output as is.
###Input example:
```in
zhangdan
lili
wangming
```
###Output example:
```out
1:lili
2:wangming
3:zhangdan
```
answer:If there is no answer, please comment