There’s no right or wrong way to format your code (especially if it’s just you looking at it) but indents make it more readable and easier for the eye to follow which is handy for troubleshooting, etc.
INPUT “HELLO” HELLO$ IF HELLO$=“hello” THEN PRINT “good to see you” ELSEIF HELLO$==“hi” THEN PRINT “how are ya” ELSE ... ENDIFIdeally, if conditions/results can fit on one line, I would do that, but if the result of a condition is lengthy than I would indent it under the condition. I also indent code within a loop and DEFs.