/*写了个,看看有没有错*/
#include<stdio.h>
#include<string.h>
int main()
{
char str[100] , stack[100];
int top=0,max=0,count=0;
gets(str);
for(int i=0;i<strlen(str);i++)
{
if(str[i]=='(')
{
stack[top++]=str[i];
if(top>max)
{
max=top;
}
}
else
{
stack[--top];
count++;
}
}
printf("%-3d%-3d\n",max,count);
return (0);
}