get x,y from keyboard integers then do the following x=y^x , y=x where x is the initial value print the result without using another variable (only x and y allowed)
i used LOG to do it and it worked but the teacher wants a simpler way to do it(simple math).
Example Input:
X=3 Y=4
Example Output:
64 3