#include #include int main() { std::string a = "Hello"; std::string b = "Привет"; std::cout << a.length() << '\n'; std::cout << b.length() << '\n'; }