from microbit import*
while True:
  for x in range (5):
    display.set_pixel(x,0,9)
    
