import java.util.*;

public class Sentence {
  
  /**
   * Return the given sentence with the words in
   * the reverse order.
   * @param s The sentence to reverse.
   * @return The sentence with words reversed.
   */
  public static String reverseWords(String s) {
    return "";
  }
}
