#include using namespace std; int main() { int a[10]; sort(a, a + 10); vector b(10); sort(b.begin(), b.end()); }