You can also create a program to calculate Fibonacci Numbers in Python, and it's smaller than most other examples:

x = int(raw_input("Go until?"))

a, b = 0, 1
while b < x
print b
a, b = b, a+b