#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)< >(b,vector(c,d)) #define vvv(a,b,c,d,e) vector > >(b,vv(a,c,d,e)) using ll = long long; using pii = pair; using vi = vector; using vll = vector; int bitcntll(unsigned long long x) { x = (x & 0x5555555555555555) + ((x >> 1) & 0x5555555555555555); x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333); x = (x & 0x0f0f0f0f0f0f0f0f) + ((x >> 4) & 0x0f0f0f0f0f0f0f0f); x = (x & 0x00ff00ff00ff00ff) + ((x >> 8) & 0x00ff00ff00ff00ff); x = (x & 0x0000ffff0000ffff) + ((x >> 16) & 0x0000ffff0000ffff); x = (x & 0x00000000ffffffff) + ((x >> 32) & 0x00000000ffffffff); return (int)x; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); ll N; cin >> N; for (ll i = 1; i <= N - 1; ++i) { ll j = N - i; if (bitcntll(i) != 1 && bitcntll(j) != 1) { cout << i << ' ' << j << endl; RT 0; } } cout << -1 << endl; }