#ifndef COMPLEX_H
#define COMPLEX_H

#include <iostream>

class complex
{
public:
  complex(double r = 0.0, double i = 0.0) : real(r), imag(i) {}

private:
  double real, imag;
};

#endif
