Guest User

Untitled

a guest
May 27th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. y1,y2 = nil,nil
  2. t = 2
  3. begin
  4. x = readline.to_i
  5. y2,y1 = 0,x
  6. while true
  7. x = readline.to_i
  8. y2 = t*y2+y1
  9. y1 = t*y1+x
  10. end
  11. rescue EOFError
  12. puts"#{y2} "
  13. end
Add Comment
Please, Sign In to add comment