Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main() {
- long long x;
- cin >> x;
- long long koren = sqrt(x);
- for(long long i = 1; i <= koren; i += 1) {
- if(x % i == 0) {
- cout << i << " ";
- cout << x / i << " ";
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement