How to solve this problem

class Point:
def int(self, x, y):
self.x = x
self.y = y

def move(self):
    print("move")

def draw(self):
    print("draw")

point = Point(10, 20)
print(point.x)

result below:
Traceback (most recent call last):
File “C:\Users\ADMIN\PycharmProjects\Constructors\app.py”, line 13, in
point = Point(10, 20)
^^^^^^^^^^^^^
TypeError: Point() takes no arguments

Process finished with exit code 1

Simple typo:
__int__ is not equal to __init__.

where should i type it. At the beginning or at the end of the code

It should look like this.

Thank you. It is working now.