def solve(): n = int(input()) if (n > 10): print(str(10) + ' ' + str(n - 10)) else: print(str(1) + ' ' + str(n - 1)) solve()