Answer:
def countdown():
print("This is countdown")
number = int(input("Enter number: "))
if (number > 0):
countdown()
Step-by-step explanation:
This is literally what you asked, but what is the purpose?
3.5m questions
4.5m answers