package bigRat;

/**
 * TODO Put here a description of what this class does.
 *
 * @author <insert your names here>.
 */
public class BigRational /* implements Rational<BigRational> */ {
	/**
	 * TODO Put here a description of what this constructor does.
	 *
	 * @param numerator
	 * @param denominator
	 */
	public BigRational(String numerator, String denominator) {
		// TODO: implement constructor
		System.out.println("Got numerator: " + numerator);
		System.out.println("Got denominator: " + denominator);
	}
}