From c9fc01af7a0c37973a3977916dda45fdd14e8fd0 Mon Sep 17 00:00:00 2001 From: Mann Mehta <44433995+mann2108@users.noreply.github.com> Date: Sat, 9 May 2020 17:33:08 +0530 Subject: [PATCH] Resolve line length errors in math/mod_inverse_by_fermat_theorem.cpp --- math/mod_inverse_by_fermat_theorem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/mod_inverse_by_fermat_theorem.cpp b/math/mod_inverse_by_fermat_theorem.cpp index e4b0fa095..fde19dc52 100644 --- a/math/mod_inverse_by_fermat_theorem.cpp +++ b/math/mod_inverse_by_fermat_theorem.cpp @@ -73,7 +73,7 @@ int main() { std::cout << "The modular inverse of a with mod m is (a^(m-2)) : "; std::cout << binExpo(a, m-2, m) << std::endl; } else { - std::cout << "m must be a prime number to apply Fermat's Little Theorem."; + std::cout << "m must be a prime number."; std::cout << std::endl; } }