So I made a point system for a game on the TI-82. The points are stored as the variable P. I first tried using the Disp command to display the variable and text at the right place, but that didn't work with mixed text and variables. So instead I switched to using the output command, but that always puts the variable and text at a fixed position, which means that as the variable gets more digits, the space between the variable and text shrinks. I tried using the log of the variable for the position, but that didn't work because most of the time it returned decimals. Here is my current code for displaying the points:
Output(2,1,P
Output(2,3,"POINTS
Does anyone know how to increase the spacing between the variable and the text depending on how many digits the variable has?