# double.py # a program that asks for a number and prints twice that. def main(): answer = input("What is the number? ") number = int(answer) print("You said ", answer) print("Twice that is ", 2 * number) main()