/** @file 687.cpp @title No.687 E869120 and Constructing Array 1 - yukicoder @url https://yukicoder.me/problems/no/687 **/ #include using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N; cin >> N; cout << N / 2 << " " << N - (N / 2) << endl; return 0; }