public class Queue {
// your code is here
int []queue=new int[5] ;
int x=0;
public void push(int pushedElement){
//your code is here
queue[x]=pushedElement;
x++;
}
public void pop(){
for(int i=0;i