how would i go about doing that? im fairley new to assembly
this is the code to ask the user to enter a string
mov AH, 63
mov BX, 0
mov CX, 25
lea DX, UserText
int 33
this code prints the string to screen
mov AH, 64
mov BX, 1
mov CX, Length
lea DX, UserText
int 33