import math def s(r,x,y,x1,y1): d1 = (x1-x)**2+(y1-y)**2 d=math.sqrt(d1) if d%(2*r)==0: s1=d//(2*r) else: &...