2828. Sum of Digits

版权声明:本人菜鸟一只,如文章有错误或您有高见,请不吝赐教 https://blog.csdn.net/qq_41138935/article/details/83995963

2828. Sum of Digits

time limit per test

2 seconds

memory limit per test

265 megabytes

input

standard input

output

standard output

Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number n. How many times can Gerald put a spell on it until the number becomes one-digit?

Input

The first line contains the only integer n (0≤n≤10100000). It is guaranteed that n doesn't contain any leading zeroes.

Output

Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.

Examples

Input

0

Output

0

Input

10

Output

1

Input

991

Output

3

Note

In the first sample the number already is one-digit − Herald can't cast a spell.

The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once.

The third test contains number 991. As one casts a spell the following transformations take place: 991→19→10→1. After three transformations the number becomes one-digit.

例子:991-19-10-1

9+9+1=19

1+9=10

1+0=1

#include<cstdio>
#include<cstring>
#include<vector>
#include<iostream>
using namespace std;
char a[100000+10];
int main(){
	int ans=0,sum=0,tot=0;
	scanf("%s",a);
		
	for(int i=0;i<strlen(a);i++){
		sum+=a[i]-'0';
	}
	tot+=1;

	while(sum>=10){
		ans=0;
		tot++;
		while(sum>0){
			int t=sum%10;
			sum/=10;
			ans+=t;
		}
		sum=ans;
	}
	if(strlen(a)==1)	//特判 
		tot=0;
	
	cout<<tot<<endl;
	return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41138935/article/details/83995963