Get your own Python server Result Size: 625 x 565
x
 
# Import math Library
import math
# Return the remainder of x/y
print (math.remainder(9, 2))
print (math.remainder(9, 3))
print (math.remainder(18, 4))
1.0
0.0
2.0