To find the distance between two points (x1, y1) and (x2, y2), we can use the distance formula:
Distance = sqrt((x2 - x1)^2 + (y2 - y1)^2)
Using this formula, we can find the distance between the points (3, 3) and (5, 3):
Distance = sqrt((5 - 3)^2 + (3 - 3)^2)
= sqrt(2^2 + 0^2)
= sqrt(4)
= 2
Therefore, the distance between (3, 3) and (5, 3) is 2 units.