function! s:output() let this = {'lines': []} function! this.append(line) abort call add(self.lines, a:line) endfunction function! this.build() abort return join(self.lines, "\n") endfunction return this endfunction function! s:main(input) abort let o = s:output() let m = str2nr(a:input[0]) let base = 2017 % m let cww = base let i = 0 while i < 4033 let cww = (cww * base) % m let i += 1 endwhile let r = (base + cww) % m call o.append(r) return o.build() endfunction let s:input = getline(1, '$') enew put =s:main(s:input) 2,$print