Swap von Variablen


#!/usr/bin/python
import sys,math
a,b=0,1
while b < 100 :
print b
a,b = b, a+b