class Drill:
def __init__(self):
self.x = 9
self.y = 13
def drill_right(self):
self.x = self.x + 2
drill_1 = Drill()
drill_1.drill_right()