You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def task(n,):
|
|
s=0
|
|
if n<10:
|
|
s=1
|
|
elif n<100:
|
|
s=2
|
|
elif n<1000:
|
|
s=3
|
|
elif n<10000:
|
|
s=4
|
|
else:
|
|
s=5
|
|
|
|
return(s)
|
|
|
|
|
|
|
|
print(task(int(input()),))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|