package lojban

object Lojban {

  def main(args: Array[String]): Unit = {
    println("coi.")
    var input = readLine()
    while (input != "co'o") {
      if (SentenceRecognizer.isSentence(input)) {
        println(SentenceGenerator.makeSentence)
      } else {
        println("i mi na jimpe.")
      }
      input = readLine()
    }
    println("co'o.")
  }
}