Update math/check_amicable_pair.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
ewd00010
2023-05-30 15:14:55 +01:00
committed by GitHub
parent 59acc1d701
commit 55d9e6d7a9

View File

@@ -71,7 +71,7 @@ static void tests() {
assert(math::are_amicable(17296, 18416) == true);
assert(math::are_amicable(18416, 17296) == true);
std::cout << "all tests have passed" << std::endl;
std::cout << "All tests have successfully passed!" << std::endl;
}
/**