/*
#include <stdio.h>
#include <string.h>
int main()
{
int i;
char str [101]={};
scanf("%s", str);
for(i=0 ; str[i]!=NULL ; i++)
{
if(str[i]>=65 && str[i]<=90)
{
str[i]=str[i]+32;
}
else if(str[i] >= 97 && str[i] <=122)
{
str[i]=str[i]-32;
}
}
printf("%s", str);
return 0;
}
int ~ 2147483647
80 6
1. 길이가 더 긴게 더 큰 수다.
2. 길이가 같다면?? 110 120
'1' < '2'
길이가 100인 문자열 두 개를 선언 , 입력, 길이비교, 같다면 맨 앞자리부터 비교
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
int i,j;
char a [101]={}, b [101]={};
scanf("%s %s", a, b);
if(strlen(a)<strlen(b))
{
printf("%s %s", a,b);
}
else if(strlen(a)>strlen(b))
{
printf("%s %s", b,a);
}
else //길이가 같다면?
{
for(i=0; a[i]!=NULL; i++)
{
if(a[i]<b[i])
{
printf("%s %s",a,b);
break;
}
else if(a[i]>b[i])
{
printf("%s %s",b,a);
break;
}
}
}
return 0;
}
10 2 100
10 3 1000
10 5 100000
10 500 10000000000000....
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
int i,s=0;
char str[502]={};
scanf("%s", str);
for(i=0; str[i]!=NULL; i++)
{
s=s+str[i]-'0';
}
if(s%3==0)
{
printf("1");
}
else
{
printf("0");
}
return 0;
}
*/
#include <stdio.h>
#include <string.h>
int main()
{
int i,s=10;
char str[50]={};
scanf("%s",str);
for(i=1; str[i]!=NULL; i++)
{
if(str[i]==str[i-1])
{
s+=5;
}
else
{
s+=10;
}
}
printf("%d", s);
return 0;
}