black mage masta! YO! i think i get what you are trying to get at. correct me if im wrong:
you wanna create a program that gets input from the user for 1 number then multiply that number by itself a print the answer?
here is how id do it:
Input "please enter a number: ",A
B= A * A
Print "If you square ",A," you get ",B,"."
wait key
okay, now for an explenation:
all i did was delete your first print command. change your input to your questing and save it as "A" a real number. a real number is a number that doesent have a decimal. then i state that the letter "B" is equal to A times A. then we print:
Print "If you square ",A," you get ",B,"."
the commas outside your print command show that the print command is continueing.
hope it helps,
~snowfall Studios