#include<stdio.h>
int main()
{
	int n ;
	scanf("%d",&n);
	int i, j, k, m;
	k = n/ 2;//k就是偶数个数
	m = n - k;
	printf("%d %d", m, k);
	return 0;
}