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