N = int(input().strip()) if N & 1 == 1: print(str(N // 2) + ' ' + str((N + 1) // 2)) else: print(str(N // 2) + ' ' + str(N // 2))