fork download
  1. n=input()
  2. if n<1:print'a';exit()
  3. a,f=0,1
  4. while n>1:a,f,n=f,a+f,n-1
  5. r=''
  6. while f:r,f=chr(f%26+97)+r,f//26
  7. print r
Success #stdin #stdout 0s 8976KB
stdin
31
stdout
cypnp