#include<stdio.h>
#include<stdlib.h>
#define SIZE 5
int stack[SIZE];
int top=-1;
void push(){
    if(top==SZE-1)
    printf("Stack overflow");
    else{
        top++;
        stack[top];
    }
}
void peek(){
    if(top==-1)
    printf("Stack underflow");
    else{
        printf(stack[top]);
    }
}