# Illustrating the importance of indentation following if statements. # In this program, where does the body of the if statement end? # Which of the print statements will print regardless of the value of # the number? user_input = input("please enter an integer: ") number = int(user_input) if number > 8: print("this number is greater than 8") print("the square of this number is ", number**2) print("the cube of this number is ", number**3)