// editor1
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#include<string.h.
#define MAX 5
int stack[MAX];
int top = -1;
int isValidintegers(char*str)
{
    if(str == NULL || *str == '\0')
    return 0;
    if(*str == '-')str++;
    while(*str){
        if(isDigit(*str))
        return 0;
        str++;
    }
    return 0;
}
void push(int value)
{

}