CF784F.Crunching Numbers Just for You

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are developing a new feature for the website which sells airline tickets: being able to sort tickets by price! You have already extracted the tickets' prices, so there's just the last step to be done...

You are given an array of integers. Sort it in non-descending order.

输入格式

The input consists of a single line of space-separated integers. The first number is nn ( 1<=n<=101<=n<=10 ) — the size of the array. The following nn numbers are the elements of the array ( 1<=ai<=1001<=a_{i}<=100 ).

输出格式

Output space-separated elements of the sorted array.

输入输出样例

  • 输入#1

    3 3 1 2
    

    输出#1

    1 2 3 
    

说明/提示

Remember, this is a very important feature, and you have to make sure the customers appreciate it!

首页