# Chapter 15 example: read a number with int(). text = input("Enter a number: ") n = int(text) print("Twice that is " + str(n * 2))