You can clone with HTTPS or SSH.
"""def fizzbuzz(): for x in range(1,101): if x%3 == 0 and not x%5 == 0: print "Fizz" elif x%5 == 0 and not x%3 == 0: print "Buzz" elif x%3 == 0 and x%5 == 0: print "FizzBuzz" else: print x fizzbuzz();""" for x in range(1,101): msg = '' if x%3 == 0: msg += "Fizz" if x%5 == 0: msg += "Buzz" if msg: print msg else: print x for x in range(1,101): msg = '' if not x % 3: msg += "Fizz" if not x % 5: msg += "Buzz" if not msg: msg = x print msg