/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[100001];
int a=0, b=0, i;
scanf("%s", str);
for(i = 0 ; str[i] != NULL ; i++)
{
if(str[i]=='(')
{
a++;
}
if(str[i]==')')
{
b++;
}
}
printf("%d %d", a, b);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[11];
int a=0, i;
scanf("%s", str);
for(i = 0 ; str[i] != NULL ; i++)
{
if(str[i]=='t')
{
printf("%d ", i+1);
}
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char str[10];
scanf("%s", str);
if(str[0]=='I' && str[1]=='O' && str[2]=='I' && str[3]==NULL)
{
printf("IOI is the International Olympiad in Informatics.");
}
else
{
printf("I don't care.");
}
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[11];
int i;
scanf("%s", str);
printf("welcome! %s", str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[101];
int a=0, b=0, i;
scanf("%s", str);
for(i = 0 ; str[i] != NULL ; i++)
{
if(str[i]=='c' || str[i]=='C')
{
a++;
}
if(str[i]=='c' && str[i+1]=='c'
|| str[i]=='C' && str[i+1]=='C'
|| str[i]=='c' && str[i+1]=='C'
|| str[i]=='C' && str[i+1]=='c')
{
b++;
}
}
printf("%d\n%d", a, b);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[51];
int a=0, i;
scanf("%s", str);
for(i = 0 ; str[i] != NULL ; i++)
{
if(str[i]==str[i-1])//그릇을 같은 방향으로 포개면
{
a=a+5;
}
else
{
a=a+10;
}
}
printf("%d", a);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[51];
//scanf("%s", str);
gets(str);
printf("%s",str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[101];
int i;
gets(str);
for(i = 0 ; str[i] != NULL ; i++)
{
if(str[i]!=' ')
{
printf("%c", str[i]);
}
}
return 0;
}
*/



