/*
#include <stdio.h>
#include <string.h>
int stack[205]={};
int top=-1; // top : 마지막 데이터의 "위치"
void push (char x)
{
top++;
stack[top]=x;
}
void pop()
{
if(top>-1)
{
top--;
}
}
void view()
{
printf(">>>>stack [");
for(int i=0;i<=top;i++)
{
printf("%d ",stack[i]);
}
printf("] top = %d \n",top);
}
int main()
{
int i,n,cnt=0, num;
char str[205]={};
scanf("%d",&n);
getchar();
for(i=0;i<n;i++)
{
scanf("%s",str);
// push? top? pop? size? empty?
if(str[1]=='u')
{
scanf("%d )",&num);
push(num);
}
else if(str[0]=='t')
{
if(top==-1)
{
printf("-1\n");
}
else
{
printf("%d\n",stack[top]);
}
}
else if(str[0]=='p')
{
pop();
}
else if(str[0]=='s')
{
printf("%d\n",top+1);
}
else if(str[0]=='e')
{
if(top==-1)
{
printf("true\n");
}
else
{
printf("false\n");
}
}
//view(); printf("\n");
}
return 0;
}
*/
/////////////////////////다시 해보기
#include <stdio.h>
#include <string.h>
int stacl[205{};
int top=-1;
void push(char x)
{
top++;
stack[top]=x;
}
void pop()
{
if(top>-1)
{
top--;
}
}
int main()
{
int i,n,cnt=0,num;
char str[205]={};
scanf("%d",&n);
for(i=0;i<=n-1;i++)
{
}
return 0;
}