It looks like you're new here. If you want to get involved, click one of these buttons!
./level02
Append the 39th through 42nd numbers in the sequence as a string and feed it to this binary via argv[1]. 1, 2, 3, 5, 8, 13, 21...
The 4th through the 7th numbers would give you 581321
Module Module1
Sub Main()
Dim no1 As Integer
Dim no2 As Integer
Dim temp As Integer
no1 = 0
no2 = 1
For i = 1 To 43
temp = no1 + no2
If i = 40 Then
Console.WriteLine(temp)
ElseIf i = 41 Then
Console.WriteLine(temp)
ElseIf i = 42 Then
Console.WriteLine(temp)
ElseIf i = 43 Then
Console.WriteLine(temp)
End If
no2 = no1
no1 = temp
Next
Console.ReadLine()
End Sub
End Module
102334155
165580141
267914296
433494437
./level02 102334155165580141267914296433494437
Win.
sh-3.2$