#include #include //制約チェック //WAならOK int main(){ int n;long long k; std::cin >> n >> k; assert(2<=n && n<=1000000); assert(1<=k && k<=1000000000000ll); }