You are on page 1of 1

def june(n):

count = n
while count < 10 and count > 0 :
print count , count ** 2
count = count + 1

You might also like