#include <iostream>
#include <list>

int main() {
    std::list<std::string> user_data;
    // فرض کنید که تعداد کاربران به شدت زیاد است
    if (user_data.max_size() > 1000000) {
        std::cout << "System can handle the expected data size." << std::endl;
    } else {
        std::cout << "Warning: System might not handle such a large amount of data!" << std::endl;
    }
    return 0;
}