// editor5
#include<stdio.h>
#include<string.h>
#include<ctype.h>
#define max 25

char *stack[max];
int top=0;
void push(char s[])
{
    strcpy(stack[top++],s);
}

char[] pop()
{
    return;
}