Imports System
Public Module Module1
Public Sub Main()
dim x as integer = console.ReadLine()
dim y as integer = console.ReadLine()
dim a as integer
for j as integer = 1 to 10
a = x+y
x = y
y = a
console.writeline(a)
next
End Sub
End Module