Write a program that takes in an integer in the range 11-100 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. End with a newline.
Ex: If the input is:
93
the output is:
93 92 91 90 89 88
Ex: If the input is:
11
the output is:
11
Ex: If the input is:
9
Comments
Leave a comment