#include <stdio.h>

typedef struct {
int tos;
char stackarr[];
}STACK;

STACK paren = {.tos = -1};

int main(void) {
	// your code goes here
	return 0;
}
