// FracComplex.cpp

/*
 * Hier bitte Ihre FHA-E-Mail-Adresse angeben:
 *       ?????.?????@stud.fh-aargau.ch
 */

#include <iostream>
#include <cmath>
using namespace std;


/* Fuer Aufgabe 1.c Kommentarzeichen entfernen
class FracComplex {
	Fraction re;
	Fraction im;
public:
  FracComplex(Fraction re = 0, Fraction im = 0);

  friend ostream& operator<<(ostream& os, const FracComplex& fracComplex);
};
*/
