From 264a26e15a70d94ba630b4638278d8480386e4f5 Mon Sep 17 00:00:00 2001 From: John Law Date: Mon, 11 May 2020 00:55:16 +0200 Subject: [PATCH] Fix spacing --- math/modular_inverse_fermat_little_theorem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/modular_inverse_fermat_little_theorem.cpp b/math/modular_inverse_fermat_little_theorem.cpp index fde19dc52..965c21298 100644 --- a/math/modular_inverse_fermat_little_theorem.cpp +++ b/math/modular_inverse_fermat_little_theorem.cpp @@ -66,7 +66,7 @@ int main() { int64_t a, m; // Take input of a and m. std::cout << "Computing ((a^(-1))%(m)) using Fermat's Little Theorem"; - std:: cout << std::endl << std::endl; + std::cout << std::endl << std::endl; std::cout << "Give input 'a' and 'm' space separated : "; std::cin >> a >> m; if (isPrime(m)) {