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 [a, b] = map(split(a:input[0], ' '), 'str2nr(v:val)') let a50 = a * 50 let d = 0.8 + 0.2 * b let r = float2nr(a50 + floor(a50 / d)) call o.append(r) return o.build() endfunction let s:input = getline(1, '$') enew put =s:main(s:input) 2,$print