Fix spacing

This commit is contained in:
John Law 2020-05-11 00:55:16 +02:00 committed by GitHub
parent 8f41e1704d
commit 264a26e15a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)) {