Answer:
I'm not sure but I think region 3
According to my calculations 1.8e9
<span>import math
def calculateDistance(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
distance = calculateDistance(2,4,6,8)
print distance</span>
Answer:

Step-by-step explanation:
