resolve compile error

This commit is contained in:
Mann Mehta 2020-04-02 04:07:01 +05:30
parent 70ac13f4a0
commit c7a50927b7

View File

@ -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;
}