#include <bits/stdc++.h>
using namespace std;
int main()
{ ios_base::sync_with_stdio(0);
set<int>S={11,22,33,44,55,66,77,88,99};
cout<<???<<endl;
///Co mam wpisac w miejsce znakow zapytania, by
///program wypisał np. piaty element set'a?
///Zeby w tym wypadku wypisal 55
return 0;
}