<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.util.*;

public class HW07 {

  public static void main(String[] args) {
    Queue   Q  = new Queue();
    Scanner sc = new Scanner(System.in);
    String  s  = sc.next();

    while( !s.equals("done") ) {
      Q.enqueue(s);
      s = sc.next();
    }

    while( !Q.empty() ) {
      System.out.println(Q.dequeue());
    }
  }
}
</pre></body></html>