#include #include using namespace std; int hatvany (int n, int k) { if (k == 0) return 1; return n * hatvany(n, k-1); } int main () { cout<