N=int(input()) if N%2==0: print(str(N//2)+' '+str(N//2)) else: print(str(N//2+1)+' '+str(N//2))