#include #include int main() { std::string const s1 { "b" }; std::string const s2 { "a" }; std::cout << std::boolalpha << (s1 < s2) << std::endl; }