from turtle import*
def spirala (a,k):
     while a>=10:
          fd(a)
          lt(90)
          a=a-k
