4339 - 세개의 도시명을 정렬

Time Limit: 1s Memory Limit: 128MB

Submissions: 1170 Solved: 551
Description

세개의 도시명을 입력받아 오름차순으로 출력하는 프로그램을 작성하세요.

Write a program that prompts the user to enter three cities and displays them in ascending order.

Input

* Line 1 : 도시1을 나타내는 문자열 

* Line 2 : 도시2을 나타내는 문자열 

* Line 3 : 도시3을 나타내는 문자열 

(각 문자열의 길이는 100을 넘지 않는다)

 

Output

* Line 1 : 도시명들을 오름차순으로 정렬한후 공백으로 연결시켜 출력

 

 

Sample Input
Chicago
Los Angeles
Atlanta
Sample Output
Atlanta Chicago Los Angeles
Source

JAVA2015 PE4.24