diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index 0f9d442a5..512365c4a 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -20,6 +20,6 @@ int main() { /// Give two nos as a^b (where '^' denotes power exponent operation std::cin >> a >> b; ///Result of a^b - std::cout << binExpo(a,b) << endl; + std::cout << binExpo(a,b) << std::endl; }