#include <iostream> using namespace std; int main() { int n; int cum = 0; cin >> n; while (n > 0) { n % 10; n /= 10; cum = cum +1; } cout << cum; }