Untitled

 avatar
unknown
c_cpp
a year ago
151 B
1
Indexable
#include <iostream>
#include <string>
using namespace std;

int main()  
 {
    string str;
    cin >> str;
    cout << " " << str.length();
}