#include int main() { int n,m;std::cin >> n>> m; long long ans = 1; for(int i = 0; i < n; i++)ans *= m; std::cout << ans << std::endl; return 0; }