#include <stdio.h> int main() { int N,i,x=0,y=0; scanf("%d",&N); for(i=1;i<=N;i++) { if(i%2==0) x++; else y++; } printf("%d %d",y,x); return 0; }