class Complex(real: Double, imaginary: Double) {
  def re() = real
  def im() = imaginary
}