diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index c9ed944d8..8fb9ec1a8 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -23,7 +23,7 @@ int binExpo(int a, int b) { int main() { int a, b; - /// Give two nos as a^b (where '^' denotes power exponent operation) + /// Give two numbers a, b std::cin >> a >> b; /// Result of a^b std::cout << binExpo(a, b) << std::endl;