Skip to content

Instantly share code, notes, and snippets.

@theortsac
Created June 17, 2024 10:16
Show Gist options
  • Save theortsac/a0253bb0184d9a204e92b645e7754dd2 to your computer and use it in GitHub Desktop.
Save theortsac/a0253bb0184d9a204e92b645e7754dd2 to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, p;
cin >> n >> p;
int qtdb = 1, d = 0;
while ((qtdb * p) <= n) {
qtdb *= p;
d++;
}
cout << d << "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment