#include using namespace std; int main(){ string b = "a very long phrase"; string a = "world"; if (a > b) { cout << a << " is bigger than " << b << endl; } else { cout << b << " is bigger than " << a << endl; } cout << "The length of " << a << " is " << a.size() << endl; cout << "The length of " << b << " is " << b.size() << endl; return 0; }