}
class Ticket{
public static int ticket=100;
}
class TucketSealCenter{
public void sell(){
SeaWindow sw=new SeaWindow();
new Thread(sw,"售票窗口1").start();
new Thread(sw,"售票窗口2").start();
new Thread(sw,"售票窗口3").start();
new Thread(sw,"售票窗口4").start();
}