def doubleIt(num): return(num) def start(): num = int(input("Enter a number and I'll double it in returns: ")) print(num) start()