0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00
OI-codes/AcWing/760/760.cpp

18 lines
238 B
C++

#include <iostream>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
std::string s;
int main() {
std::ios::sync_with_stdio(false);
std::getline(cin, s);
cout << s.size() << endl;
return 0;
}