Program to print Table of any inputted number

Input "Enter number which table you want = " to n
count = 1
do while count < = 10
?n,"*",count,"=", n * count
count = count + 1
enddo