X Tutup
#include
#include
int main() { std::list
l = {1, 2, 3}; std::sort(l.begin(), l.end()); return 0; }
X Tutup