#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int myComp(int a,int b){ return a < b; }


int main() {
	std::vector<int> a = { 3, 2, 1};
	std::sort(a.begin(),a.end(),myComp);
	// your code goes here
	return 0;
}