#include <iostream>
#include <algorithm>


int main ()
{
    int myints[] = {32,71,12,45,26,80,53,33};
    
    std::cout<< "Unsorted:\n";
    for (auto i : myints) std::cout<< i<< '\n';
    
    std::sort (myints, myints + 8);
    
    std::cout<< "Sorted:\n";
    for (auto i : myints) std::cout<< i<< '\n';
    
    return 0;
}