/*
#include <stdio.h>
#include<string.h>
int stack[1005]={};
int top=-1;
void push(int str)
{
top++;
stack[top]=str;
}
int pop()
{
if(top!=-1)
{
return stack[top--];
}
}
int main()
{
int n, i,c=0;
char str[100005]="";
scanf("%d", &n);
scanf("%s", str);
for(i=n-1;i>=0;i--)
{
push(str[i]);
c++;
if(c%3==0&&i!=0){
push(',');
}
}
while(top!=-1)
{
printf("%c", pop());
}
return 0;
}
*/
#include<stdio.h>
#include<string.h>
int stack[100000]={};
int top=-1;
void push(int str)
{
top++;
stack[top]=str;
}
int pop()
{
if(top!=-1)
{
return stack[top--];
}
}
int main(){
int num, i
scanf("(%s", );
if()
{
scanf("%d)", &num);
}
return 0;
}