
public class LongStack {

   public static void main (String[] argum) {
      // TODO!!! Your tests here!
   }

   LongStack() {
      // TODO!!! Your constructor here!
   }

   @Override
   public Object clone() throws CloneNotSupportedException {
      return this; // TODO!!! Your code here!
   }

   public boolean stEmpty() {
      return false; // TODO!!! Your code here!
   }

   public void push (long a) {
      // TODO!!! Your code here!
   }

   public long pop() {
      return 0; // TODO!!! Your code here!
   } // pop

   public void op (String s) {
      // TODO!!!
   }
  
   public long tos() {
      return 0; // TODO!!! Your code here!
   }

   @Override
   public boolean equals (Object o) {
      return true; // TODO!!! Your code here!
   }

   @Override
   public String toString() {
      return null; // TODO!!! Your code here!
   }

   public static long interpret (String pol) {
      return 0; // TODO!!! Your code here!
   }

}

