#include <iostream>
#include <set>
using namespace std;

int main () {
    set <int> v = {1, 2, 3, 4, 5, 6, 7};
    for (auto elem : v) {

         cout << elem << endl;
    }
    return 0;
}
