#include <iostream>
template <class T>
void sort(T a[], int len) {
T temp;
for(int i = 0; i < len; i++) {
temp = a[i];
for(int j = i + 1; j < len; j++) {
if(temp > a[j]) {
a[i] = a[j];
a[j] = temp;
temp = a[i];
}
}
}
}
int main()
{
int a[3] = {0, 2, 1};
sort(a, 3);
for(int i = 0; i < 3; i++) {
std::cout << a[i] << " " << std::endl;
}
return 0;
}