// This program runs two threads
// of equal priority
class DebugSeventeen1
{
 public static void main(String[] args)
  {
   FixDebugThreadA a = new FixDebugThreadA;
   FixDebugThreadB b = new FixDebugThreadB;
  }
}