Untitled

 avatar
unknown
c_cpp
a year ago
181 B
1
Indexable
#include <iostream>
using namespace std;
int main()
{
	int n;
	cin >> n;
	int temp = 0;
	int count = 0;
	while (temp > 0) {
		temp / 10;
		count++;
	}
	cout << count;
}