#include using namespace std; #define sorted(a) sort(a.begin(), a.end()); typedef long long ll; const long mod = 1e9 + 7; int main(void) { #ifdef DEBUG freopen("input.txt", "r", stdin); #endif ios::sync_with_stdio(false); cin.tie(0); long M; cin >> M; for (long i = 2; i <= sqrt(M); i++) { if (!(M % i)) { long d = M / i; cout << to_string(d) + " " + to_string(i) << endl; return 0; } } cout << "1 " << M << endl; return 0; }