#include <bits/stdc++.h>
using namespace std;
using uint = unsigned int;
// Buffer size should be 2^12 or 2^13 for optimal performance with files.
static const uint BUFFER_SIZE = 1 << 12;
// Maximum possible length of a string representing primitive type
// assuming we won't encounter huge double values.
static const uint MAX_LENGTH = 1 << 7;
namespace Detail {
struct Width {
uint value;
explicit Width(uint value) : value(value) {}
};
struct Fill {
char value;
explicit Fill(char value) : value(value) {}
};
struct Base {
uint value;
explicit Base(uint value) : value(value) {
assert(2 <= value && value <= 36);
}
};
struct Precision {
uint value;
explicit Precision(uint value) : value(value) {
assert(value < MAX_LENGTH);
}
};
struct Delimiter {
const char* value;
explicit Delimiter(const char* value) : value(value) {}
};
} // namespace Detail
Detail::Width setWidth(uint value = 0) {
return Detail::Width(value);
}
Detail::Fill setFill(char value = ' ') {
return Detail::Fill(value);
}
Detail::Base setBase(uint value = 10) {
return Detail::Base(value);
}
Detail::Precision setPrecision(uint value = 9) {
return Detail::Precision(value);
}
Detail::Delimiter setDelimiter(const char* value = " ") {
return Detail::Delimiter(value);
}
/*************************************************** input classes ****************************************************/
class InputDevice {
protected:
const char* head;
const char* tail;
InputDevice(const char* head, const char* tail) : head(head), tail(tail), base(setBase().value) {}
InputDevice(InputDevice const&) = delete;
InputDevice& operator = (InputDevice const&) = delete;
virtual void fillInput() = 0;
inline char nextChar() {
if (__builtin_expect(head >= tail, false)) fillInput();
return *head++;
}
template <class I> int readUnsignedIntGeneral(I& arg, char c) {
I value = 0;
int length = 0;
for (;; ++length, c = nextChar()) {
if (isDigit(c)) c -= '0';
else if (isUpper(c)) c -= 'A' - 10;
else if (isLower(c)) c -= 'a' - 10;
else c = base;
if (c >= base) break;
value = base * value + c;
}
arg = value;
return --head, length;
}
template <class I> inline int readUnsignedInt(I& arg, char c) {
if (__builtin_expect(base > 10, false)) return readUnsignedIntGeneral(arg, c);
I value = 0;
int length = 0;
for (; static_cast<unsigned char>(c - '0') < base; ++length, c = nextChar())
value = base * value + c - '0';
arg = value;
return --head, length;
}
template <class I> inline int readSignedInt(I& arg, char c) {
bool negative = c == '-';
if (negative) c = nextChar();
typename make_unsigned<I>::type unsignedArg;
if (readUnsignedInt(unsignedArg, c) == 0) return 0;
arg = negative ? ~static_cast<I>(unsignedArg - 1) : static_cast<I>(unsignedArg);
return 1;
}
template <class F> int readFloatingPoint(F& arg, char c) {
bool negative = c == '-';
if (negative) c = nextChar();
unsigned long long integerPart;
if (readUnsignedInt(integerPart, c) == 0) return 0;
if (nextChar() == '.') {
unsigned long long fractionalPart = 0;
int fractionalLength = readUnsignedInt(fractionalPart, nextChar());
if (fractionalLength > 0) {
unsigned long long basePower = 1;
for (; fractionalLength; --fractionalLength) basePower *= base;
arg = static_cast<F>(fractionalPart) / basePower;
}
} else --head;
arg += integerPart;
if (negative) arg = -arg;
return 1;
}
public:
static inline bool isSpace(char c) {
return static_cast<unsigned char>(c - '\t') < 5 || c == ' ';
}
static inline bool isDigit(char c) {
return static_cast<unsigned char>(c - '0') < 10;
}
static inline bool isUpper(char c) {
return static_cast<unsigned char>(c - 'A') < 26;
}
static inline bool isLower(char c) {
return static_cast<unsigned char>(c - 'a') < 26;
}
static inline bool isOneOf(char c, const char* str) {
return strchr(str, c) != nullptr;
}
uint base;
void putBack() {
--head; // can be called only once directly after successfully reading a character
}
inline int readChar(char& arg) {
if (__builtin_expect(head >= tail, false)) {
fillInput();
if (__builtin_expect(head >= tail, false)) return arg = '\0', 0;
}
return arg = *head++, 1;
}
template <class UnaryPredicate>
inline char skipCharacters(UnaryPredicate isSkipped) {
char c;
do {
c = nextChar();
} while (isSkipped(c));
return c;
}
inline char skipCharacters() {
return skipCharacters(isSpace);
}
template <class UnaryPredicate>
inline int readString(char* arg, int limit, UnaryPredicate isTerminator) {
skipCharacters(isTerminator);
// put back first non-skipped character, reserve space for null character
for (--head, --limit; head < tail; fillInput()) {
ptrdiff_t chunkSize = find_if(head, min(tail, head + limit), isTerminator) - head;
arg = copy_n(head, chunkSize, arg);
head += chunkSize;
limit -= chunkSize;
if (chunkSize == 0 || head < tail) break;
}
return *arg = '\0', 1;
}
template <class I> inline int readUnsignedInt(I& arg) {
return readUnsignedInt(arg, skipCharacters()) > 0 ? 1 : 0;
}
template <class I> inline int readSignedInt(I& arg) {
return readSignedInt(arg, skipCharacters());
}
template <class F> inline int readFloatingPoint(F& arg) {
return readFloatingPoint(arg, skipCharacters());
}
};
class InputFile : public InputDevice {
FILE* file;
bool lineBuffered;
bool owner;
char buffer[BUFFER_SIZE];
void fillInput() override {
head = buffer;
*buffer = '\0';
if (__builtin_expect(!lineBuffered, true)) {
tail = head + fread(buffer, 1, BUFFER_SIZE, file);
} else {
tail = head;
if (fgets(buffer, BUFFER_SIZE, file)) while (*tail) ++tail;
}
}
public:
InputFile(FILE* file = stdin, bool lineBuffered = true, bool takeOwnership = false)
: InputDevice(buffer, buffer), file(file), lineBuffered(lineBuffered), owner(takeOwnership) {}
InputFile(const char* fileName) : InputFile(fopen(fileName, "r"), false, true) {}
~InputFile() {
if (owner) fclose(file);
}
};
// Picks up data appended to the string but doesn't handle reallocation.
class InputString : public InputDevice {
void fillInput() override {
while (*tail) ++tail;
}
public:
InputString(const string& s) : InputDevice(s.data(), s.data() + s.size()) {}
InputString(const char* s) : InputDevice(s, s + strlen(s)) {}
};
/*************************************************** output classes ***************************************************/
class OutputDevice {
protected:
char buffer[BUFFER_SIZE + MAX_LENGTH];
char* output;
char* end;
bool separate;
OutputDevice() : output(buffer), end(buffer + BUFFER_SIZE + MAX_LENGTH), separate(false), width(setWidth().value)
, fill(setFill().value), base(setBase().value), precision(setPrecision().value), delimiter(setDelimiter().value) {}
OutputDevice(OutputDevice const&) = delete;
OutputDevice& operator = (OutputDevice const&) = delete;
virtual void writeToDevice(uint count) = 0;
inline void flushMaybe() {
if (__builtin_expect(output >= buffer + BUFFER_SIZE, false)) {
writeToDevice(BUFFER_SIZE);
output = copy(buffer + BUFFER_SIZE, output, buffer);
}
}
template <class I> inline char* writeUnsignedInt(I arg, char* last) {
if (__builtin_expect(arg == 0, false)) *--last = '0';
if (__builtin_expect(base == 10, true)) {
for (; arg; arg /= 10) *--last = '0' + arg % 10;
} else for (; arg; arg /= base) {
I digit = arg % base;
*--last = digit < 10 ? '0' + digit : 'A' - 10 + digit;
}
return last;
}
template <class I> inline char* writeSignedInt(I arg, char* last) {
auto unsignedArg = static_cast<typename make_unsigned<I>::type>(arg);
if (arg < 0) {
last = writeUnsignedInt(~unsignedArg + 1, last);
*--last = '-';
return last;
}
return writeUnsignedInt(unsignedArg, last);
}
template <class F> char* writeFloatingPoint(F arg, char* last) {
bool negative = signbit(arg);
if (negative) arg = -arg;
if (isnan(arg)) for (int i = 0; i < 3; ++i) *--last = i["NaN"];
else if (isinf(arg)) for (int i = 0; i < 3; ++i) *--last = i["fnI"];
else {
auto integerPart = static_cast<unsigned long long>(arg);
arg -= integerPart;
for (int i = 0; i < precision; ++i) arg *= base;
auto fractionalPart = static_cast<unsigned long long>(arg);
if ((arg - fractionalPart) * 2 >= static_cast<F>(1)) {
if (precision == 0) ++integerPart;
else ++fractionalPart;
}
if (precision > 0) {
char* point = last - precision;
last = writeUnsignedInt(fractionalPart, last);
::fill(point, last, '0');
last = point;
*--last = '.';
}
last = writeUnsignedInt(integerPart, last);
}
if (negative) *--last = '-';
return last;
}
inline int writeT(char* first) {
int delimiterLenght = separate ? writeDelimiter() : 0;
separate = true;
int charsWritten = static_cast<int>(end - first);
if (__builtin_expect(charsWritten < width, false))
charsWritten += writeFill(width - charsWritten);
output = copy(first, end, output);
flushMaybe();
return delimiterLenght + charsWritten;
}
inline int writeFill(int count) {
int result = count;
if (__builtin_expect(output + count + MAX_LENGTH < end, true)) {
if (count == 1) *output++ = fill;
else output = fill_n(output, count, fill);
} else for (uint chunkSize = static_cast<uint>(buffer + BUFFER_SIZE - output);; chunkSize = BUFFER_SIZE) {
if (chunkSize > count) chunkSize = count;
output = fill_n(output, chunkSize, fill);
flushMaybe();
if ((count -= chunkSize) == 0) break;
}
return result;
}
public:
int width;
char fill;
uint base;
uint precision;
string delimiter;
inline int writeChar(char arg) {
separate = false;
*output++ = arg;
flushMaybe();
return 1;
}
inline int writeString(const char* arg, int count, bool checkWidth = true) {
separate = false;
int result = count + (checkWidth && count < width ? writeFill(width - count) : 0);
if (__builtin_expect(output + count + MAX_LENGTH < end, true)) {
if (count == 1) *output++ = *arg;
else output = copy_n(arg, count, output);
} else for (uint chunkSize = static_cast<uint>(buffer + BUFFER_SIZE - output);; chunkSize = BUFFER_SIZE) {
if (chunkSize > count) chunkSize = count;
output = copy_n(arg, chunkSize, output);
flushMaybe();
if ((count -= chunkSize) == 0) break;
arg += chunkSize;
}
return result;
}
inline int writeDelimiter() {
return writeString(delimiter.c_str(), static_cast<int>(delimiter.size()), false);
}
template <class I> inline int writeUnsignedInt(I arg) {
return writeT(writeUnsignedInt(arg, end));
}
template <class I> inline int writeSignedInt(I arg) {
return writeT(writeSignedInt(arg, end));
}
template <class F> inline int writeFloatingPoint(F arg) {
return writeT(writeFloatingPoint(arg, end));
}
inline void flush() {
writeToDevice(static_cast<uint>(output - buffer));
output = buffer;
}
virtual ~OutputDevice() {};
};
class OutputFile : public OutputDevice {
FILE* file;
bool owner;
void writeToDevice(uint count) override {
fwrite(buffer, 1, count, file);
fflush(file);
}
public:
OutputFile(FILE* file = stdout, bool takeOwnership = false) : file(file), owner(takeOwnership) {}
OutputFile(const char* fileName) : OutputFile(fopen(fileName, "w"), true) {}
~OutputFile() override {
flush();
if (owner) fclose(file);
}
};
class OutputString : public OutputDevice {
string& str;
void writeToDevice(uint count) override {
str.append(buffer, count);
}
public:
OutputString(string& str) : OutputDevice(), str(str) {}
~OutputString() override {
flush();
}
};
/**************************************************** read & write ****************************************************/
static unique_ptr<InputDevice> input;
static unique_ptr<OutputDevice> output;
// property setters
inline int read(Detail::Base base) {
input->base = base.value;
return 0;
}
// primitive types
inline int read() {
return 0;
}
inline int read(char& arg) {
return input->readChar(arg);
}
template <class I> inline typename enable_if<is_integral<I>::value && is_unsigned<I>::value,
int>::type read(I& arg) {
return input->readUnsignedInt(arg);
}
template <class I> inline typename enable_if<is_integral<I>::value && is_signed<I>::value,
int>::type read(I& arg) {
return input->readSignedInt(arg);
}
template <class F> inline typename enable_if<is_floating_point<F>::value,
int>::type read(F& arg) {
return input->readFloatingPoint(arg);
}
// characters skip
inline int read(const char& arg) {
input->skipCharacters([arg](char c) {
return arg != c;
});
return 0;
}
inline int read(const char* arg) {
if (*arg) input->skipCharacters([arg](char c) {
return InputDevice::isOneOf(c, arg);
});
else input->skipCharacters();
input->putBack();
return 0;
}
inline int read(bool (*isSkipped)(char)) {
input->skipCharacters(isSkipped);
input->putBack();
return 0;
}
// forward declarations so everything compiles
template <class... Ts> int read(char* arg, int limit, bool (*isTerminator)(char), Ts&&... args);
template <class... Ts> int read(char* arg, int limit, const char* terminators, Ts&&... args);
template <class Iterator, class... Ts, typename = decltype(*std::declval<Iterator>())>
int read(Iterator first, Iterator last, Ts&&... args);
template <class Iterator, class... Ts, typename = decltype(*std::declval<Iterator>())>
int read(Iterator first, int count, Ts&&... args);
template <class T, class... Ts, typename = typename enable_if<!is_convertible<T, char*>::value, void>::type>
int read(T&& arg1, Ts&&... args);
// C strings
inline int read(char* arg, int limit, const char* terminators = "") {
if (!*terminators) return input->readString(arg, limit, InputDevice::isSpace);
else return input->readString(arg, limit, [terminators](char c) {
return InputDevice::isOneOf(c, terminators);
});
}
template <class... Ts>
inline int read(char* first, char* last, Ts&&... args) {
return read(first, static_cast<int>(last - first), forward<Ts>(args)...);
}
template <int N, class... Ts>
inline int read(char (&arg)[N], Ts&&... args) {
return read(static_cast<char*>(arg), N, forward<Ts>(args)...);
}
template <class... Ts>
inline int read(char* arg, int limit, bool (*isTerminator)(char), Ts&&... args) {
return input->readString(arg, limit, isTerminator) + read(forward<Ts>(args)...);
}
template <class... Ts>
inline int read(char* arg, int limit, const char* terminators, Ts&&... args) {
return read(arg, limit, terminators) + read(forward<Ts>(args)...);
}
// complex types and ranges
template <class T1, class T2>
inline int read(pair<T1, T2>& arg) {
return read(arg.first) & read(arg.second);
}
template <class T>
inline int read(vector<T>& arg) {
uint n;
if (read(n) == 0) return 0;
arg.resize(n);
return read(arg.begin(), arg.end());
}
template <class Iterator, class... Ts, typename>
int read(Iterator first, Iterator last, Ts&&... args) {
int success = 1;
for (; first != last; ++first) success &= read(*first);
return success + read(forward<Ts>(args)...);
}
template <class Iterator, class... Ts, typename>
int read(Iterator first, int count, Ts&&... args) {
return read(first, first + count, forward<Ts>(args)...);
}
template <class T, class... Ts, typename>
inline int read(T&& arg1, Ts&&... args) {
return read(forward<T>(arg1)) + read(forward<Ts>(args)...);
}
// property setters
inline int write(Detail::Width width) {
output->width = static_cast<int>(width.value);
return 0;
}
inline int write(Detail::Fill fill) {
output->fill = fill.value;
return 0;
}
inline int write(Detail::Base base) {
output->base = base.value;
return 0;
}
inline int write(Detail::Precision precision) {
output->precision = precision.value;
return 0;
}
inline int write(Detail::Delimiter delimiter) {
output->delimiter = delimiter.value;
return 0;
}
// primitive types
inline int write() {
return 0;
}
inline int write(char arg) {
return output->writeChar(arg);
}
template <class I> inline typename enable_if<is_integral<I>::value && is_unsigned<I>::value,
int>::type write(I arg) {
return output->writeUnsignedInt(arg);
}
template <class I> inline typename enable_if<is_integral<I>::value && is_signed<I>::value,
int>::type write(I arg) {
return output->writeSignedInt(arg);
}
template <class F> inline typename enable_if<is_floating_point<F>::value,
int>::type write(F arg) {
return output->writeFloatingPoint(arg);
}
// complex types
inline int write(const char* arg) {
return output->writeString(arg, static_cast<int>(strlen(arg)));
}
template <int N>
inline int write(char (&arg)[N]) {
return output->writeString(arg, static_cast<int>(strlen(arg)));
}
inline int write(const string& arg) {
return output->writeString(arg.c_str(), static_cast<int>(arg.size()));
}
template <class T1, class T2>
inline int write(const pair<T1, T2>& arg) {
return write(arg.first) + output->writeDelimiter() + write(arg.second);
}
// forward declarations so everything compiles
template <class Iterator, class... Ts,
typename = typename enable_if<!is_convertible<Iterator, const char*>::value, decltype(*std::declval<Iterator>())>::type>
int write(Iterator first, Iterator last, Ts&&... args);
template <class Iterator, class... Ts,
typename = typename enable_if<!is_convertible<Iterator, const char*>::value, decltype(*std::declval<Iterator>())>::type>
int write(Iterator first, int count, Ts&&... args);
template <class T, class T2, class... Ts> int write(T&& arg, T2&& arg2, Ts&&... args);
// ranges
template <class Iterator, class... Ts, typename>
int write(Iterator first, Iterator last, Ts&&... args) {
int charsWritten = 0;
for (; first != last; charsWritten += ++first == last ? 0 : output->writeDelimiter()) charsWritten += write(*first);
return charsWritten + write(forward<Ts>(args)...);
}
template <class Iterator, class... Ts, typename>
int write(Iterator first, int count, Ts&&... args) {
return write(first, first + count, forward<Ts>(args)...);
}
template <class T, class T2, class... Ts>
inline int write(T&& arg, T2&& arg2, Ts&&... args) {
return write(forward<T>(arg)) + write(forward<T2>(arg2), forward<Ts>(args)...);
}
template <class... Ts>
inline int writeln(Ts&&... args) {
return write(forward<Ts>(args)..., '\n');
}
void flush() {
output->flush();
}
/***********************************************************************************************************************
* Read returns number of arguments successfully read. Parameters:
* - setBase(uint): base for integer and floating point numbers
* Single variable of one of the following types:
* - char, standard integer and floating point types
* - pair
* - vector (size and then the elements)
* Characters skip:
* - char: skip until the given character is encountered and read it
* - const char*: skip all the characters from the string
* - predicate: skip all the characters satisfying the predicate
* C strings: read until character limit is reached or termination character is found
* (one of the characters in a given string or defined by predicate, isspace by default)
* - char (&)[N], terminator
* - char*, int limit, terminator
* Ranges:
* - Iterator first, Iterator last
* - Iterator first, int count
***********************************************************************************************************************
* Write returns number of characters written. Parameters:
* - setWidth(uint): minimum width of a single element to write (except character)
* - setFill(char): character prepended to an element until set width is reached
* - setBase(uint): base for integer and floating point numbers
* - setPrecision(uint): number of digits after the decimal point
* - setDelimiter(const char*): delimiter automatically inserted between elements
* that are not strings or characters
* Single variable of one of the following types:
* - char, standard integer and floating point types
* - string, const char*
* - pair
* Ranges:
* - Iterator first, Iterator last
* - Iterator first, int count
**********************************************************************************************************************/
const int MAX_N = 500000;
int v[MAX_N];
int main() {
freopen("algsort.in", "r", stdin);
freopen("algsort.out", "w", stdout);
input.reset(new InputFile(stdin, false));
output.reset(new OutputFile());
int n;
read(n);
for (int i = 0; i < n; i += 1) {
read(v[i]);
}
sort(v, v + n);
for (int i = 0; i < n; i += 1) {
write(v[i]);
write(' ');
}
return 0;
}