#include #include using namespace std; int main() { // Example of ambiguous overloading // pow(int, int) was not provided cout << pow(3, 4) << endl; cout << pow(4., 3.) << endl; return 0; }