diff --git a/fizzbuzz.py b/fizzbuzz.py
index 4b28edcab6c7e82006ce4c1267e11b555f0fa4d1..07657f8dac561eb1bcaf63981d75c94548fa42a6 100644
--- a/fizzbuzz.py
+++ b/fizzbuzz.py
@@ -5,13 +5,12 @@ def fizzbuzz(n:int) -> str:
     And for the multiples of five print "Buzz". 
     For numbers which are multiples of both three and five print "FizzBuzz".
     """
-    if 3 % n == 0  and 5 % n == 0:
+    if n % 3 == 0  and n % 5 == 0:
         return "FizzBuzz"
-    elif 3 % n == 0:
+    elif n % 3 == 0:
         return "Fizz"
-    elif 5 % n ==0:
+    elif n % 5 == 0:
         return "Buzz"
     else:
         return str(n)
 
-