n = int(input()) if n == 0: print(9, 1) elif n == 1: print(18, 1) elif n == 2: print(37, 1) else: max_s = 9 * (2 * n) print(max_s, 1)