diff --git a/fizzbuzz.py b/fizzbuzz.py
index 62662d919241b5ae77db38c40f23dd2332551588..c7f05429500273e1d873ac667a33eb1595054fca 100644
--- a/fizzbuzz.py
+++ b/fizzbuzz.py
@@ -6,7 +6,7 @@ def fizzbuzz(n:int) -> str:
     For numbers which are multiples of both three and five print "FizzBuzz".
     """
     l = []
-    for i in range(100):
+    for i in range(1:100):
         if i % 2 == 0:
             l.append ("Fizz")
         elif i % 3 == 0: