Write a c++ program which reads any two numbers(x,y) and prints x to the power y.
#include <iostream>
#include <cmath>
using namespace std;
int main(int argc, char **argv)
{
& int x;
& int y;
& cout << "Please input any two numbers 'x' and 'y':" << endl;
& cin >> x >> y;
& cout << "'x' in power of 'y' is " << pow(x, y);
& return 0;
}