n = int(input()) if n == 0: print("9 1") elif n == 1: print("26 1") else: print(f"{9 * 2 * n} 1")