#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main() {
int c;
int temp, count=0;
int temp_A, temp_B, temp_C;
cin >> c;
temp = c;
while (temp != c || count == 0) {
temp_A = temp % 10; //1의 자리
temp_B = temp / 10; //10의 자리
temp_C = (temp_A + temp_B) % 10;
temp = (temp_A * 10) + temp_C;
count++;
if (c == temp)
break;
}
cout << count;
}