I have this code down so far but it is asking me to use a while loop to repeatedly ask the user for a denominator for as long as the denominator is 0. Edit: I believe the code I'm missing goes in between the denominator= and if numerator = int(input...
numerator = int(input("Enter a numerator: "))
denominator = int(input("Enter denominator: "))
if numerator / denominator * denominator == numerator:
print "Divides evenly!"
else:
print "Doesn't divide evenly."