What do you think would be the fastest way to print 3 characters. I thought it would be...

Code:
mov al, 8h        ; backspace
int 29h
mov al, ' '
int 29h
mov al, 8h
int 29h
But theres some slow down when using this. Got any ideas?