import com.google.gson.JsonObject;

/* {{{description}}} */
class Main {
  public static JsonObject main(JsonObject args) {
    JsonObject response = new JsonObject();
    {{#if body}}
    response.addProperty("body", {{{body}}});
    {{else}}
    response.addProperty("body", "");
    {{/if}}
    return response;
  }
}