This commit is contained in:
Sandipsinh Rathod 2024-11-04 16:23:18 -05:00
parent c3c690c3ed
commit b56562b548
No known key found for this signature in database

@ -106,4 +106,4 @@ bool ExactNumber::operator>=(const ExactNumber& rhs) const {
ostream& operator<<(ostream& os, const ExactNumber& n) {
os << n.numer << "/" << n.denom;
return os;
}
}