#Title: Multiply by 10 #Author: Daniel #Date: 18/11 #Version: 1 #Purpose: multiply stuff by 10 print("This program multiplys numbers by 10") number = int(input("Choose a number you want to be multiplied by 10 ")) result = number*10 print(result) print("The Program has ended")