#include <bits/stdc++.h>

void solve() {
    long long a;
    std::cin >> a;
    std::cout << a << ' ' << 1 << std::endl;
}

int main() {
    std::cin.tie(0)->sync_with_stdio(0);
    std::cout << std::fixed << std::setprecision(16);
    int t = 1;

    while (t--) solve();
}