#include #include //avail ranges struct ar { int from; int to; int attendance; }; // politik doma struct pd { int from; int to; //from friend bool operator < (pd a, pd b ){ return a.from > b.from; // nebíte mě } // to friend bool operator > (pd a, pd b ){ return a.to > b.to; // nebíte mě } }; std::vector politici; int main() { int poslanci, meetingu, dotazu; std::cin >> poslanci; std::cin >> meetingu; std::cin >> dotazu; for (int i = 0; i < poslanci; i++) { int f, t; std::cin >> f; std::cin >> t; } std::cout << "Hello, World!" << std::endl; return 0; }