#include <iostream>
#include <string>

int main()
{
    std::cout << "Please input a sentence:" << std::endl;
    std::string sentence;
    std::getline(std::cin, sentence);
    std::cout << "The sentence you entered was "
              << sentence.length()
              << " characters long." << std::endl;
}
