mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
16 lines
276 B
C++
16 lines
276 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
/// Why this online judge don't support C++11??? F***....
|
|
/// #include <algorithm>
|
|
#include <cmath>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int x,z;
|
|
double y;
|
|
cin>>x>>y>>z;
|
|
cout<<pow(x,z)<<" "<<pow(y,z)<<endl;
|
|
return 0;
|
|
}
|