from microbit import *

for i in range(9, 2, -3):
    display.show(i)
    sleep(500)
