n = int(input()) ans = "-1, -1, -1" if n < 3 else f"1, {str(n-1)}, {str(n)}" print(ans)