void print(const Fraction& f) { cout << f.getNumerator() << "/" << f.getDenominator(); cout << endl; // Do we want this? }