Run ID:6536

提交时间:2025-03-07 10:46:20

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