def draw():
    screen.fill((255, 255, 255))
    
    screen.draw.filled_rect(
        Rect(
            (0, 0),
            (4, 4)
        ),
        color=(220, 220, 220)
    )