n=gets.to_i h={} i=1 while i*i<=n if i%n==0 h[i.to_s+(i/n).to_s]=1 h[(i/n).to_s+i.to_s]=1 end i+=1 end p h.size