# illustrating the importance of indentation following if statements user_input = raw_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