# Python integers grow with the result; no fixed-width overflow.
def fibonacci(count):
    a = 0
    b = 1
    for i in range(count):
        previous = a
        a = b
        b = previous + b
    return a

print("Fibonacci(100):", fibonacci(100))
print("Two to the hundredth:", 2 ** 100)
