Python 3.4.2 (default, Oct 8 2014, 10:45:20) [GCC 4.9.1] on linux Type "copyright", "credits" or "license()" for more information. >>> ================================ RESTART ================================ >>> >>> product(2,3,4) 24 >>> ================================ RESTART ================================ >>> >>> fibonacci(5) 5 >>> >>> i=0 >>> while i<10: print(fibonacci(i)) i=i+1 1 1 1 2 3 5 8 13 21 34 >>> fibonacci(0) 1 >>> ================================ RESTART ================================ >>> >>> i=0 >>> while i<10: print(fibonacci(i)) i=i+1 0 1 1 2 3 5 8 13 21 34 >>>