You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
448 B
25 lines
448 B
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
void divide(int x) {
|
|
for (int i = 2; i <= x / i; i++)
|
|
if (x % i == 0) {
|
|
int s = 0;
|
|
while (x % i == 0) x /= i, s++;
|
|
cout << i << ' ' << s << endl;
|
|
}
|
|
if (x > 1) cout << x << ' ' << 1 << endl;
|
|
}
|
|
|
|
int main() {
|
|
int n;
|
|
cin >> n;
|
|
while (n--) {
|
|
int x;
|
|
cin >> x;
|
|
divide(x);
|
|
puts("");
|
|
}
|
|
return 0;
|
|
} |