import java.util.Scanner;
public class StackLL
{
Node start=new Node();
Node top=new Node();
Node curr=new Node();
int ch,num;
StackLL()
{
num=0;
start=null;
top=null;
}