diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index 8f7a90ca8..5c71ca97c 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -16,8 +16,7 @@ int binExpo(int a, int b) { int res = binExpo(a, b/2); if (b%2) { return res*res*a; - } - else { + } else { return res*res; } }